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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc4f;
    --dark-color: #1a2f0a;
    --light-color: #f4f7f0;
    --text-color: #2c3e1f;
    --text-light: #5a6f4c;
    --white: #ffffff;
    --gray-light: #e8ede3;
    --gray-medium: #c4d0b9;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

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

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

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

/* Navigation - Asymmetric */
.nav-asymmetric {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    list-style: none;
    transition: right 0.3s ease;
    z-index: 99;
    gap: 1.5rem;
}

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

.nav-menu li a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

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

/* Hero - Offset Layout */
.hero-offset {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

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

.hero-content-float {
    padding: 2rem 1.5rem;
    background-color: var(--light-color);
    margin: -3rem 1.5rem 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-content-float h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

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

.cta-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.intro-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--light-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Problem Section */
.problem-amplify {
    padding: 3rem 1.5rem;
    background-color: var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-visual {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

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

.problem-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Services Grid - Offset Cards */
.services-grid-offset {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.section-header-float {
    margin-bottom: 2.5rem;
}

.section-header-float h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-header-float p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card-overlap {
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.btn-select-service {
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-select-service:hover {
    background-color: var(--dark-color);
    transform: translateX(4px);
}

/* Trust Building Split */
.trust-building-split {
    padding: 4rem 1.5rem;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.trust-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-points li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
}

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

.trust-visual {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

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

/* Testimonials - Asymmetric Float */
.testimonials-asymmetric {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.testimonials-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    text-align: center;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-style: italic;
}

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

/* Insight Reveal */
.insight-reveal {
    padding: 4rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.insight-container h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.insight-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.insight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.insight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Visual */
.benefits-visual {
    padding: 4rem 1.5rem;
    background-color: var(--light-color);
}

.benefits-header {
    margin-bottom: 2.5rem;
}

.benefits-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.benefit-major {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.benefit-text {
    padding: 2rem;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.benefit-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.benefit-minor {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-minor h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.benefit-minor p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray-light);
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.form-intro p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Urgency Bar */
.urgency-bar {
    background-color: var(--accent-color);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.urgency-content p {
    color: var(--dark-color);
    font-size: 1rem;
    margin: 0;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Page Header - Offset */
.page-header-offset {
    padding: 4rem 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.page-header-offset h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.header-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-story {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-visual {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Values - Asymmetric */
.values-asymmetric {
    padding: 4rem 1.5rem;
    background-color: var(--light-color);
}

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

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Certifications */
.certifications {
    padding: 4rem 1.5rem;
    background-color: var(--gray-light);
}

.certifications h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--dark-color);
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
}

.cert-item img {
    width: 80px;
    height: 80px;
}

.cert-item p {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
}

.cta-about {
    padding: 4rem 1.5rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Services Page */
.services-detailed {
    padding: 3rem 1.5rem;
}

.service-detail {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-detail-header img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-color);
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray-light);
    text-align: center;
}

.service-cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 1.5rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-cta {
    padding: 4rem 1.5rem;
    background-color: var(--light-color);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.thanks-details {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

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

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

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

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

/* Legal Pages */
.legal-page {
    padding: 3rem 1.5rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        padding: 0;
        gap: 2rem;
    }

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

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

    .hero-offset {
        flex-direction: row;
        min-height: 70vh;
    }

    .hero-visual {
        width: 50%;
        height: auto;
    }

    .hero-content-float {
        width: 50%;
        margin: 3rem;
        align-self: center;
    }

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

    .intro-asymmetric {
        flex-direction: row;
        gap: 4rem;
    }

    .intro-left {
        flex: 1.2;
    }

    .intro-right {
        flex: 0.8;
    }

    .problem-amplify {
        flex-direction: row;
        align-items: center;
    }

    .problem-visual {
        flex: 0.8;
    }

    .problem-text {
        flex: 1.2;
        padding-left: 2rem;
    }

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

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

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

    .trust-content {
        flex: 1;
    }

    .trust-visual {
        flex: 1;
    }

    .testimonial-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .testimonial-float-3 {
        flex: 1 1 100%;
    }

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

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

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

    .benefit-major {
        flex: 1 1 100%;
        display: flex;
        flex-direction: row;
    }

    .benefit-major img {
        width: 50%;
        height: auto;
    }

    .benefit-text {
        width: 50%;
    }

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

    .form-container-offset {
        padding: 3rem 2.5rem;
    }

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

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .story-visual {
        flex: 0.8;
    }

    .story-content {
        flex: 1.2;
        padding-left: 2rem;
    }

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

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

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

    .team-member {
        flex: 0 1 calc(50% - 1.25rem);
    }

    .service-detail-header {
        align-items: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content-float h1 {
        font-size: 3rem;
    }

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

    .team-member {
        flex: 0 1 calc(25% - 1.9rem);
    }
}