* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e63946;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #2d2d2d;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 20px;
}

.nav-menu li a.active {
    color: var(--secondary-color);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cta-hero:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    color: var(--white);
}

.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-lead {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.story-emphasis {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0;
    color: var(--secondary-color);
    text-align: center;
}

.story-image-inline {
    margin: 50px 0;
}

.story-image-inline img {
    width: 100%;
    border-radius: 8px;
}

.hook-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title-center {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.section-title-alt {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.hook-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.hook-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hook-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hook-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hook-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hook-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.cta-button-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.problem-section {
    padding: 100px 0;
    background: var(--white);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.problem-highlight {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px;
    background: #fff5f5;
    border-left: 4px solid var(--secondary-color);
    margin: 40px 0;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.insight-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.insight-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.insight-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.insight-conclusion {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    color: var(--secondary-color);
}

.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.trust-markers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.trust-item {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}

.services-reveal {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title-dramatic {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

.urgency-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.urgency-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.urgency-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.urgency-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-urgent {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 60px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }
}

.cta-urgent:hover {
    background: #d62828;
    transform: scale(1.05);
    color: var(--white);
}

.urgency-note {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
    text-align: center;
}

.order-section {
    padding: 100px 0;
    background: var(--white);
}

.order-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.order-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-checkbox {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 5px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.form-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.final-push {
    padding: 80px 0;
    background: var(--bg-light);
}

.final-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.final-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.final-emphasis {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0;
    color: var(--secondary-color);
}

.cta-final {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-final:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #d62828;
    transform: scale(1.05);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: #d62828;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.page-hero {
    padding: 120px 20px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 0;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin: 60px 0 30px;
    color: var(--primary-color);
}

.about-stats-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.stat-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.cta-about {
    text-align: center;
    margin-top: 60px;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.price-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

.service-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.cta-services-bottom {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-services-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: var(--white);
}

.contact-hours-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-hours-highlight h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.thanks-section {
    padding: 120px 20px 80px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.thanks-info-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    text-align: left;
}

.thanks-step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.thanks-step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.thanks-service-info {
    background: #fff5f5;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.thanks-contact-info {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.thanks-contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-cta-box {
    margin: 50px 0;
}

.thanks-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-link {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
    color: var(--white);
}

.thanks-home {
    margin-top: 50px;
}

.legal-page {
    padding: 120px 20px 80px;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.cookies-table th {
    background: var(--bg-dark);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: 30px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .hero-title {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hook-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hook-item {
        flex: 1;
        min-width: 280px;
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .insight-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .testimonials-flow {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 25px);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .about-stats-section {
        flex-direction: row;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .thanks-links {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        gap: 40px;
    }

    .service-card {
        flex-direction: row;
    }

    .service-visual {
        flex: 0 0 45%;
    }

    .service-visual img {
        height: 100%;
        min-height: 350px;
    }
}
