/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Navigation */
.nav-wrapper {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f4f;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: #2c2c2c;
    position: relative;
}

.nav-links a:hover {
    color: #1a5f4f;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a5f4f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    font-size: 1.8rem;
    color: #2c2c2c;
    display: block;
}

/* Hero Story Section */
.hero-story {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #5a5a5a;
    max-width: 600px;
    line-height: 1.6;
}

.hero-image {
    order: 1;
    height: 350px;
    overflow: hidden;
}

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

/* Narrow Content */
.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.opening-line {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #1a1a1a !important;
    margin-bottom: 2rem !important;
}

/* Narrative Intro */
.narrative-intro {
    background-color: #ffffff;
    padding: 4rem 0;
}

/* Problem Amplification */
.problem-amplification {
    background-color: #f8f9fa;
    padding: 4rem 5%;
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    margin-bottom: 1.3rem;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.split-image {
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
}

/* Insight Reveal */
.insight-reveal {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1a5f4f 0%, #2d7a66 100%);
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Storytelling Scenario */
.storytelling-scenario {
    background-color: #ffffff;
    padding: 4rem 0;
}

.storytelling-scenario h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

/* Inline CTA Block */
.inline-cta-block {
    background-color: #fff8f0;
    padding: 2.5rem 5%;
    text-align: center;
    border-top: 3px solid #d4a574;
    border-bottom: 3px solid #d4a574;
}

.inline-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5f4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: #145243;
    transform: translateY(-2px);
}

/* Trust Building */
.trust-building {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

.content-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f4f;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f4f;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5f4f;
    font-size: 0.95rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #1a5f4f;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Visual Break */
.visual-break {
    height: 400px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Approach Section */
.approach-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.phases-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-box {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.phase-number {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    opacity: 0.6;
}

.phase-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.phase-box p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5a5a5a;
    font-size: 1.05rem;
}

.services-reveal-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.8rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card > p {
    padding: 0 1.5rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-card ul {
    padding: 0 1.5rem 0 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.price-reveal {
    padding: 1.2rem 1.5rem;
    background-color: #fff8f0;
    font-size: 1.15rem;
    color: #2c2c2c;
    border-top: 1px solid #e9ecef;
}

.price-reveal strong {
    font-size: 1.5rem;
    color: #1a5f4f;
    font-weight: 700;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a5f4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #145243;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
    border-radius: 8px;
    border-left: 5px solid #d4a574;
}

.urgency-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.urgency-box p {
    margin-bottom: 1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.project-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f4f;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

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

.checkbox-group a {
    color: #1a5f4f;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5f4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #145243;
    transform: translateY(-2px);
}

/* Final Reassurance */
.final-reassurance {
    padding: 4rem 0;
    background-color: #ffffff;
}

.final-reassurance h2 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.final-reassurance p {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.reassurance-list {
    list-style: none;
    padding-left: 0;
}

.reassurance-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #3a3a3a;
    font-size: 1.05rem;
}

.reassurance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f4f;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #e9ecef;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-col p {
    color: #b8b8b8;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1a5f4f;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 95, 79, 0.97);
    padding: 1rem 5%;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #1a5f4f;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #d4a574;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a5f4f 0%, #2d7a66 100%);
    padding: 4rem 5%;
    text-align: center;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Story */
.about-story {
    padding: 4rem 5%;
}

.story-section {
    margin-bottom: 4rem;
}

.story-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-section p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a5f4f;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-list {
    list-style: none;
    padding-left: 0;
}

.team-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #3a3a3a;
}

.team-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a5f4f;
    font-weight: 700;
}

.commitment-section {
    margin-top: 3rem;
}

.team-section {
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a5f4f 0%, #2d7a66 100%);
    border-radius: 12px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #c29563;
    transform: translateY(-2px);
}

/* Services Full */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-full {
    padding: 3rem 5%;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #3a3a3a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f4f;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #fff8f0;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f4f;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5f4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Process Section */
.process-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Contact Main */
.contact-main {
    padding: 4rem 5%;
}

.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a5f4f;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1a5f4f;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #6c757d !important;
    font-style: italic;
}

.contact-cta-box {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
    border-radius: 12px;
    text-align: center;
}

.contact-cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta-box p {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* FAQ Section */
.faq-section h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a5f4f;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Thanks Hero */
.thanks-hero {
    padding: 4rem 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #fff8f0;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #1a5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.thanks-cta p {
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.thanks-btn {
    display: block;
    padding: 0.9rem 2rem;
    background-color: #1a5f4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.thanks-btn:hover {
    background-color: #145243;
    transform: translateY(-2px);
}

.thanks-btn.secondary {
    background-color: #6c757d;
}

.thanks-btn.secondary:hover {
    background-color: #5a6268;
}

.thanks-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.thanks-contact-info p {
    color: #5a5a5a;
}

.thanks-contact-info a {
    color: #1a5f4f;
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    padding: 3rem 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.update-date {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content a {
    color: #1a5f4f;
    text-decoration: underline;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
}

.gdpr-table th,
.cookie-table th {
    background-color: #1a5f4f;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    color: #4a4a4a;
}

.gdpr-table tr:last-child td,
.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-story {
        flex-direction: row;
        min-height: 90vh;
    }

    .hero-content {
        flex: 1;
        order: 1;
        padding: 4rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtext {
        font-size: 1.3rem;
    }

    .hero-image {
        flex: 1;
        order: 2;
        height: auto;
    }

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

    .split-text {
        flex: 1;
    }

    .split-image {
        flex: 1;
    }

    .content-split.reverse {
        flex-direction: row-reverse;
    }

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

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

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .phases-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .phase-box {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .sticky-cta {
        display: block;
    }

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

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

    .service-info {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .thanks-links {
        flex-direction: row;
        max-width: 100%;
    }

    .steps-list {
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 2rem);
    }

    .benefit-item {
        flex: 0 0 calc(33.333% - 1.4rem);
    }

    .phases-container {
        flex-direction: row;
    }

    .phase-box {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
