:root {
    --ocean-blue: #390099;
    --lavender-mist: #ebe6f5;
    --midnight-purple: #25006b;
    --forest-green: #2d7d32;
    --sunset-orange: #ff8b00;
    --coral-red: #f42f2c;
    --steel-gray: #727272;
    --pearl-white: #ffffff;
    --charcoal-black: #1a1a1a;
    --shadow-gray: #5a5a5a;
    --accent-amber: #f79f24;
    --neutral-border: #d8d8d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--charcoal-black);
    background: var(--pearl-white);
}

.viewport-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

img {
    max-width: 100%;
    height: auto;
}

.main-navigation {
    background: var(--pearl-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-logo img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--charcoal-black);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--charcoal-black);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -7px;
}

.hamburger:after {
    top: 7px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar-nav {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--charcoal-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.3s ease;
        padding-top: 90px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

main {
    padding-top: 80px;
}

.hero-showcase {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--pearl-white) 100%);
}

.content-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-narrative h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 26px;
    line-height: 1.2;
}

.lead-statement {
    font-size: 18px;
    color: var(--shadow-gray);
    margin-bottom: 34px;
    line-height: 1.6;
}

.action-cluster {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-action {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-purple) 100%);
    color: var(--pearl-white);
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3);
}

.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}

.secondary-action {
    background: transparent;
    color: var(--ocean-blue);
    padding: 15px 34px;
    border: 2px solid var(--ocean-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-action:hover {
    background: var(--ocean-blue);
    color: var(--pearl-white);
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 890px) {
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-narrative h1 {
        font-size: 36px;
    }

    .hero-showcase {
        padding: 55px 0;
    }
}

.benefits-grid {
    padding: 110px 0;
    background: var(--pearl-white);
}

.section-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 21px;
}

.section-header p {
    font-size: 17px;
    color: var(--shadow-gray);
    max-width: 640px;
    margin: 0 auto;
}

.feature-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 42px;
}

.feature-card {
    background: var(--pearl-white);
    padding: 42px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--lavender-mist);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
    background: var(--lavender-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 34px;
    height: 34px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(240deg);
}

.feature-card:hover .feature-icon {
    background: var(--ocean-blue);
}

.feature-card:hover .feature-icon img {
    filter: invert(1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 17px;
}

.feature-card p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
}

.services-showcase {
    padding: 110px 0;
    background: var(--lavender-mist);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.text-zone h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 26px;
}

.text-zone p {
    font-size: 17px;
    color: var(--shadow-gray);
    margin-bottom: 34px;
    line-height: 1.6;
}

.service-highlights {
    margin-bottom: 42px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
}

.highlight-item img {
    width: 24px;
    height: 24px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(120deg);
}

.highlight-item span {
    font-size: 16px;
    color: var(--charcoal-black);
}

.service-cta {
    background: var(--coral-red);
    color: var(--pearl-white);
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta:hover {
    background: #d63028;
    transform: translateY(-2px);
}

.image-zone img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 890px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .text-zone h2 {
        font-size: 32px;
    }
}

.product-gallery {
    padding: 110px 0;
    background: var(--pearl-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--pearl-white);
    padding: 26px 21px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.statistics-counter {
    padding: 90px 0;
    background: var(--charcoal-black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 34px;
    text-align: center;
}

.stat-block {
    color: var(--pearl-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-amber);
    display: block;
    margin-bottom: 13px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-section {
    padding: 110px 0;
    background: var(--lavender-mist);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
    margin-top: 67px;
}

.pricing-card {
    background: var(--pearl-white);
    border-radius: 12px;
    padding: 42px 28px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--ocean-blue);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 21px;
}

.price-tag {
    margin-bottom: 34px;
}

.currency {
    font-size: 18px;
    color: var(--shadow-gray);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--ocean-blue);
}

.feature-list {
    list-style: none;
    margin-bottom: 34px;
}

.feature-list li {
    font-size: 16px;
    color: var(--shadow-gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--lavender-mist);
}

.feature-list li:last-child {
    border-bottom: none;
}

.pricing-btn {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-btn:hover {
    background: var(--midnight-purple);
    transform: translateY(-2px);
}

.testimonials-area {
    padding: 110px 0;
    background: var(--pearl-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 42px;
    margin-top: 67px;
}

.testimonial-card {
    background: var(--pearl-white);
    padding: 42px 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--lavender-mist);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean-blue);
}

.testimonial-card p {
    font-size: 17px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--shadow-gray);
}

.contact-section {
    padding: 110px 0;
    background: var(--lavender-mist);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: start;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 21px;
}

.contact-info p {
    font-size: 17px;
    color: var(--shadow-gray);
    margin-bottom: 34px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 34px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(240deg);
}

.contact-item span {
    font-size: 16px;
    color: var(--charcoal-black);
}

.contact-form {
    background: var(--pearl-white);
    padding: 42px 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-bottom: 21px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--neutral-border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--charcoal-black);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 21px;
}

.submit-btn {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 15px 34px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--midnight-purple);
    transform: translateY(-2px);
}

.submit-btn img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

@media screen and (max-width: 890px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding: 67px 0 34px;
    background: var(--charcoal-black);
    color: var(--pearl-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--pearl-white);
    margin-bottom: 21px;
}

.footer-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-logo {
    width: 120px;
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 17px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pearl-white);
}

.newsletter-form {
    display: flex;
    gap: 13px;
}

.newsletter-form input {
    flex: 1;
    padding: 13px;
    border: 2px solid var(--shadow-gray);
    border-radius: 8px;
    background: var(--pearl-white);
    color: var(--charcoal-black);
    font-size: 14px;
}

.newsletter-form button {
    background: var(--ocean-blue);
    color: var(--pearl-white);
    padding: 13px 21px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: var(--midnight-purple);
}

.newsletter-form button img {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 34px;
    border-top: 1px solid var(--shadow-gray);
    flex-wrap: wrap;
    gap: 21px;
}

.footer-legal p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-contact {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.footer-contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 890px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

.thankyou-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-purple) 100%);
    color: var(--pearl-white);
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 35px;
    background: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-icon img {
    width: 60px;
    height: 60px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(240deg);
}

.thankyou-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thankyou-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--pearl-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-primary {
    background: var(--pearl-white);
    color: var(--ocean-blue);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--pearl-white);
    padding: 15px 30px;
    border: 2px solid var(--pearl-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--pearl-white);
    color: var(--ocean-blue);
}

.next-steps {
    background: var(--pearl-white);
    padding: 80px 0;
    color: var(--charcoal-black);
}

.next-steps h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--pearl-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--lavender-mist);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean-blue);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--ocean-blue);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-card p {
    font-size: 15px;
    color: var(--shadow-gray);
    line-height: 1.5;
}

.testimonial-section {
    padding: 80px 0;
    background: var(--lavender-mist);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--midnight-purple);
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--shadow-gray);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 890px) {
    .thankyou-content h1 {
        font-size: 36px;
    }

    .thankyou-content p {
        font-size: 18px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .next-steps h2 {
        font-size: 28px;
    }
}

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--pearl-white) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 20px;
    color: var(--shadow-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 28px;
    line-height: 1.3;
}

.story-content p {
    font-size: 17px;
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 22px;
}

.story-highlight {
    background: var(--lavender-mist);
    padding: 30px;
    border-radius: 10px;
    margin: 28px 0;
    border-left: 4px solid var(--ocean-blue);
}

.story-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--midnight-purple);
    font-weight: 500;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.values-section {
    padding: 100px 0;
    background: var(--lavender-mist);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.value-card {
    background: var(--pearl-white);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--ocean-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.value-card:hover .value-icon {
    background: var(--midnight-purple);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 18px;
}

.value-card p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: var(--pearl-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--lavender-mist);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean-blue);
}

.team-photo {
    width: 100%;
    height: 250px;
    background: var(--lavender-mist);
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 8px;
}

.team-info .role {
    font-size: 14px;
    color: var(--ocean-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 15px;
    color: var(--shadow-gray);
    line-height: 1.5;
}

.experience-section {
    padding: 100px 0;
    background: var(--charcoal-black);
    color: var(--pearl-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--pearl-white);
    margin-bottom: 28px;
}

.experience-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 22px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-amber);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 600;
}

.experience-visual {
    position: relative;
}

.experience-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section {
    padding: 80px 0;
    background: var(--ocean-blue);
    text-align: center;
    color: var(--pearl-white);
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button {
    background: var(--pearl-white);
    color: var(--ocean-blue);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 890px) {
    .about-hero h1 {
        font-size: 40px;
    }

    .story-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content h2,
    .experience-content h2 {
        font-size: 32px;
    }

    .experience-stats {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .story-section,
    .values-section,
    .team-section,
    .experience-section {
        padding: 60px 0;
    }
}

.legal-hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--pearl-white) 100%);
    text-align: center;
}

.legal-hero h1 {
    font-size: 46px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-hero p {
    font-size: 17px;
    color: var(--shadow-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.legal-content {
    padding: 110px 0;
    background: var(--pearl-white);
}

.content-wrapper {
    max-width: 890px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 55px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 67px;
    height: 3px;
    background: var(--ocean-blue);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 18px;
    margin-top: 34px;
}

.legal-section p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.legal-section ul {
    margin-left: 28px;
    margin-bottom: 22px;
}

.legal-section li {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.highlight-box {
    background: var(--lavender-mist);
    padding: 28px;
    border-radius: 8px;
    margin: 28px 0;
    border-left: 4px solid var(--ocean-blue);
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--midnight-purple);
}

.last-updated {
    background: var(--neutral-border);
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 42px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    font-size: 15px;
    color: var(--charcoal-black);
    font-weight: 600;
}

.contact-section {
    padding: 90px 0;
    background: var(--charcoal-black);
    color: var(--pearl-white);
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--pearl-white);
}

.contact-section p {
    font-size: 17px;
    margin-bottom: 34px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item img {
    width: 22px;
    height: 22px;
    filter: invert(1);
}

.contact-item span {
    font-size: 16px;
    color: var(--pearl-white);
}

@media screen and (max-width: 890px) {
    .legal-hero h1 {
        font-size: 36px;
    }

    .legal-hero {
        padding: 120px 0 70px;
    }

    .legal-content {
        padding: 70px 0;
    }

    .legal-section h2 {
        font-size: 28px;
    }

    .contact-details {
        flex-direction: column;
        gap: 21px;
    }

    .contact-section {
        padding: 60px 0;
    }
}

.privacy-hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-purple) 100%);
    text-align: center;
    color: var(--pearl-white);
}

.privacy-hero h1 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-hero p {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.privacy-content {
    padding: 110px 0;
    background: var(--pearl-white);
}

.content-wrapper {
    max-width: 890px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 55px;
}

.privacy-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 67px;
    height: 3px;
    background: var(--ocean-blue);
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 18px;
    margin-top: 34px;
}

.privacy-section p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.privacy-section ul {
    margin-left: 28px;
    margin-bottom: 22px;
}

.privacy-section li {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-box {
    background: rgba(57, 0, 153, 0.1);
    padding: 28px;
    border-radius: 8px;
    margin: 28px 0;
    border-left: 4px solid var(--ocean-blue);
}

.info-box p {
    margin: 0;
    font-weight: 500;
    color: var(--midnight-purple);
}

.warning-box {
    background: rgba(244, 47, 44, 0.1);
    padding: 28px;
    border-radius: 8px;
    margin: 28px 0;
    border-left: 4px solid var(--coral-red);
}

.warning-box p {
    margin: 0;
    font-weight: 500;
    color: var(--coral-red);
}

.last-updated {
    background: var(--lavender-mist);
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 42px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    font-size: 15px;
    color: var(--midnight-purple);
    font-weight: 600;
}

.rights-section {
    padding: 90px 0;
    background: var(--lavender-mist);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rights-card {
    background: var(--pearl-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rights-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rights-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.rights-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 15px;
}

.rights-card p {
    font-size: 14px;
    color: var(--shadow-gray);
    line-height: 1.5;
    margin: 0;
}

.contact-section {
    padding: 90px 0;
    background: var(--charcoal-black);
    color: var(--pearl-white);
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--pearl-white);
}

.contact-section p {
    font-size: 17px;
    margin-bottom: 34px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item img {
    width: 22px;
    height: 22px;
    filter: invert(1);
}

.contact-item span {
    font-size: 16px;
    color: var(--pearl-white);
}

@media screen and (max-width: 890px) {
    .privacy-hero h1 {
        font-size: 36px;
    }

    .privacy-hero {
        padding: 120px 0 70px;
    }

    .privacy-content {
        padding: 70px 0;
    }

    .privacy-section h2 {
        font-size: 28px;
    }

    .contact-details {
        flex-direction: column;
        gap: 21px;
    }

    .rights-section,
    .contact-section {
        padding: 60px 0;
    }
}