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

:root {
    --primary-color: #2a5934;
    --secondary-color: #1a3d24;
    --accent-color: #4a8c5d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 17px;
    background: var(--white);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.4rem 0.9rem;
    background: var(--background-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.hero-visual {
    margin-top: 70px;
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(26, 61, 36, 0.4), rgba(26, 61, 36, 0.75));
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.8rem;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-overlay p {
    font-size: 1.35rem;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.intro-flow {
    padding: 5rem 2rem;
    background: var(--white);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.45rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.visual-statement {
    padding: 0;
    background: var(--background-light);
}

.split-visual {
    display: flex;
    flex-wrap: wrap;
}

.visual-column {
    flex: 1;
    min-width: 400px;
    background-color: var(--border-color);
}

.visual-column img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.text-column {
    flex: 1;
    min-width: 400px;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-column h2 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.8px;
}

.text-column p {
    margin-bottom: 1.3rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--white);
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.phase-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.phase-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: var(--background-light);
    border-radius: 8px;
    position: relative;
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.phase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.phase-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

.immersive-visual {
    padding: 0;
    position: relative;
}

.full-width-image {
    position: relative;
    background-color: var(--secondary-color);
}

.full-width-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.9;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.image-caption p {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.methodology {
    padding: 6rem 2rem;
    background: var(--white);
}

.content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.method-text {
    flex: 1.2;
    min-width: 350px;
}

.method-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.8px;
}

.method-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.method-visual {
    flex: 0.8;
    min-width: 350px;
    background-color: var(--border-color);
}

.method-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.service-preview {
    padding: 5rem 2rem;
    background: var(--background-light);
    text-align: center;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.service-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-intro {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.trust-elements {
    padding: 6rem 2rem;
    background: var(--white);
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 320px;
}

.trust-item blockquote {
    padding: 2.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.trust-item blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-style: italic;
}

.trust-item cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.final-visual {
    position: relative;
}

.closing-image-container {
    position: relative;
    background-color: var(--secondary-color);
}

.closing-image-container img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    opacity: 0.75;
}

.closing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(26, 61, 36, 0.6), rgba(26, 61, 36, 0.85));
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.closing-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.closing-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.contact-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.8rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--secondary-color);
}

.cookie-reject {
    background: var(--background-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cookie-reject:hover {
    background: var(--border-color);
}

.page-hero {
    margin-top: 70px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 2rem;
}

.content-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-text p {
    margin-bottom: 1.3rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.philosophy {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.expertise-text {
    flex: 1.3;
    min-width: 350px;
}

.expertise-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.expertise-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.expertise-visual {
    flex: 0.7;
    min-width: 350px;
    background-color: var(--border-color);
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.values {
    padding: 5rem 2rem;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.services-list {
    padding: 3rem 2rem 6rem;
}

.service-card {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.service-visual {
    flex: 0.9;
    min-width: 350px;
    background-color: var(--border-color);
}

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

.service-details {
    flex: 1.1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-details p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--background-light);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-cta {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.highlight-service {
    background: linear-gradient(135deg, var(--background-light), var(--white));
    border: 3px solid var(--accent-color);
}

.highlight-service .service-details {
    padding: 3rem;
}

.full-width {
    flex: 1;
    width: 100%;
}

.package-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.package-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.includes-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.include-item {
    flex: 1;
    min-width: 220px;
}

.include-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.include-item ul {
    list-style: none;
}

.include-item ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.include-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.package-pricing {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.savings {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.package-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

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

.service-promise {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.service-promise p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.contact-layout {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 350px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 350px;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-privacy {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary-color);
}

.location-note {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.location-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: var(--background-light);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.selected-service {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 6px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.while-you-wait {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.wait-text {
    flex: 1;
    min-width: 350px;
}

.wait-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.wait-text p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.wait-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wait-link {
    display: inline-block;
    padding: 1rem 1.8rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.wait-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.wait-visual {
    flex: 1;
    min-width: 350px;
    background-color: var(--border-color);
}

.wait-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.thanks-contact {
    padding: 5rem 2rem;
}

.thanks-contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-contact p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .text-column {
        padding: 3rem 2rem;
    }

    .phase-cards {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

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

    .contact-container {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.85rem;
    }
}