:root {
    --primary-tone: #588157;
    --primary-subtle: #eef3ef;
    --primary-deep: #3e5a3d;
    --secondary-tone: #7b9a73;
    --secondary-subtle: #f1f7f2;
    --tertiary-tone: #9fb19c;
    --tertiary-subtle: #f5f8f5;
    --accent-tone: #d4a574;
    --accent-subtle: #faf7f3;
    --neutral-tone: #8a8a8a;
    --neutral-subtle: #f9f9f9;
    --info-tone: #5a8fb4;
    --warning-tone: #c49a6b;
    --success-tone: #76a372;
    --text-primary: #3e5a3d;
    --text-secondary: #666666;
    --text-light: #999999;
    --surface-white: #ffffff;
    --surface-gray: #f8f8f8;
    --border-soft: #e5e5e5;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    background-color: var(--surface-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.8rem;
    font-weight: 500;
}

h5 {
    font-size: 1.4rem;
    font-weight: 500;
}

h6 {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

a {
    color: var(--primary-tone);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-deep);
}

.wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-navigation {
    background-color: var(--surface-white);
    box-shadow: 0 2px 8px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-system {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.brand-identity img {
    height: 85px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.navigation-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-tone);
}

.hero-showcase {
    position: relative;
}

.coverage-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-treatment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.content-alignment {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-title {
    color: var(--surface-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    color: var(--surface-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.primary-button {
    display: inline-block;
    background: var(--primary-tone);
    color: var(--surface-white);
    padding: 15px 35px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 129, 87, 0.3);
}

.primary-button:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 129, 87, 0.4);
    color: var(--surface-white);
}

.about-presentation {
    padding: 80px 0;
    background: var(--surface-white);
}

.flexible-layout {
    display: flex;
    align-items: center;
}

.no-spacing {
    margin: 0;
}

.column-half {
    width: 50%;
}

.visual-content {
    padding: 0;
}

.background-visual {
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
}

.content-wrapper {
    padding-left: 60px;
}

.text-section {
    max-width: 100%;
}

.section-subtitle {
    color: var(--primary-tone);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.accent-button {
    display: inline-block;
    background: var(--accent-tone);
    color: var(--surface-white);
    padding: 12px 30px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.accent-button:hover {
    background: var(--primary-tone);
    transform: translateY(-1px);
    color: var(--surface-white);
}

.features-showcase {
    padding: 90px 0;
    background: var(--surface-gray);
}

.intro-section {
    margin-bottom: 70px;
}

.content-centered {
    max-width: 600px;
    margin: 0 auto;
}

.primary-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--surface-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-visual {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 20px 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 20px 20px;
}

.progress-indicator {
    padding: 0 20px 25px;
}

.progress-value {
    font-weight: 600;
    color: var(--primary-tone);
}

.progress-bar {
    background: var(--neutral-subtle);
    height: 8px;
    border-radius: 0;
    overflow: hidden;
    margin-top: 8px;
}

.progress-fill {
    background: var(--primary-tone);
    height: 100%;
    border-radius: 0;
    transition: width 0.3s ease;
}

.testimonials-area {
    padding: 80px 0;
    background: var(--primary-subtle);
}

.testimonials-header {
    margin-bottom: 60px;
}

.category-label {
    color: var(--accent-tone);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--surface-white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.rating-stars {
    margin-bottom: 20px;
}

.star-icon {
    color: var(--warning-tone);
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.testimonial-quote {
    border-left: 4px solid var(--primary-tone);
    padding-left: 20px;
    margin-bottom: 20px;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-tone);
    margin-bottom: 0;
}

.faq-segment {
    padding: 80px 0;
    background: var(--surface-white);
}

.faq-header {
    margin-bottom: 60px;
}

.faq-subtitle {
    color: var(--accent-tone);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--surface-white);
    border: 1px solid var(--border-soft);
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
}

.accordion-header {
    background: var(--neutral-subtle);
}

.accordion-button {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: var(--primary-subtle);
    color: var(--primary-tone);
}

.accordion-button::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-tone);
    transition: transform 0.3s ease;
}

.accordion-button.expanded::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.show {
    max-height: 300px;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid var(--border-soft);
}

.contact-quickinfo {
    background: var(--text-primary);
    color: var(--surface-white);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
}

.icon-styled {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.contact-item:hover .icon-styled {
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(80deg);
}

.contact-title {
    color: var(--surface-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-details {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.main-footer {
    background: var(--text-primary);
    color: var(--surface-white);
    padding: 70px 0 30px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-title {
    color: var(--surface-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--surface-white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(80deg);
}

.newsletter-form {
    max-width: 400px;
}

.input-group {
    display: flex;
    gap: 0;
}

.form-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-soft);
    border-radius: 0;
    font-size: 1rem;
    background: var(--surface-white);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-tone);
}

.submit-button {
    background: var(--primary-tone);
    color: var(--surface-white);
    border: none;
    padding: 15px 25px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-deep);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--surface-white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .navigation-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.1rem;
        color: var(--text-primary);
    }

    .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;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .flexible-layout {
        flex-direction: column;
    }

    .column-half {
        width: 100%;
    }

    .content-wrapper {
        padding-left: 0;
        padding-top: 40px;
    }

    .background-visual {
        height: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .primary-heading {
        font-size: 2rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .faq-main-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .input-group {
        flex-direction: column;
    }

    .form-input {
        margin-bottom: 10px;
    }

    .wrapper-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .primary-heading {
        font-size: 1.7rem;
    }

    .testimonials-title {
        font-size: 1.7rem;
    }

    .faq-main-title {
        font-size: 1.7rem;
    }

    .features-showcase {
        padding: 60px 0;
    }

    .about-presentation {
        padding: 60px 0;
    }

    .testimonials-area {
        padding: 60px 0;
    }

    .faq-segment {
        padding: 60px 0;
    }

    .contact-quickinfo {
        padding: 50px 0;
    }

    .main-footer {
        padding: 50px 0 20px;
    }
}

.contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--surface-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(88, 129, 87, 0.05), transparent);
    transform: rotate(15deg);
    z-index: 1;
}

.contact-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    color: var(--accent-tone);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-white);
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-tone), var(--accent-tone));
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--border-soft);
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-tone);
}

.form-control::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-tone);
    transition: width 0.3s ease;
}

.form-control:focus + .form-focus-line {
    width: 100%;
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M6 9L1.5 4.5h9z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

select.form-control:focus {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23588157" d="M6 9L1.5 4.5h9z"/></svg>');
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding: 15px 0;
    line-height: 1.6;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-tone);
    color: var(--surface-white);
    border: none;
    padding: 18px 40px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-contact-btn:hover::before {
    left: 100%;
}

.submit-contact-btn:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 129, 87, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-contact-btn:hover .btn-icon {
    transform: translateX(5px);
}

.send-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submit-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .form-grid {
        gap: 15px;
    }

    .submit-contact-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Thank You Page Styles */
.thankyou-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--surface-white) 50%, var(--accent-subtle) 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.check-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(80deg);
    transition: transform 0.3s ease;
}

.thankyou-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-tone);
    margin-bottom: 20px;
    line-height: 1.2;
}

.thankyou-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.thankyou-message {
    background: var(--surface-white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.message-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-number {
    background: var(--primary-tone);
    color: var(--surface-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--surface-white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 20px;
}

.info-icon-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(80deg);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.action-buttons {
    text-align: center;
}

.return-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-tone);
    color: var(--surface-white);
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.return-home-btn:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    color: var(--surface-white);
}

.btn-icon-left {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.quick-tips {
    padding: 80px 0;
    background: var(--surface-gray);
}

.tips-header {
    margin-bottom: 50px;
}

.tips-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.tips-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--surface-white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    margin-bottom: 20px;
}

.tip-icon-img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(80deg);
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2.2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .thankyou-message {
        padding: 25px;
    }

    .message-title {
        font-size: 1.7rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .thankyou-hero {
        padding: 60px 0;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .check-icon {
        width: 60px;
        height: 60px;
    }

    .thankyou-message {
        padding: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .return-home-btn {
        width: 100%;
        justify-content: center;
    }
}