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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    background: #ffffff;
}

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

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e4420;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

.btn-cookie {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1e4420;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #2d2d2d;
}

/* Header - Split Design */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-right a {
    font-size: 1rem;
    font-weight: 500;
    color: #2d2d2d;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2c5f2d;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content,
.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    padding: 5rem 5rem 5rem 3rem;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

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

.cta-primary {
    background: #2c5f2d;
    color: #ffffff;
}

.cta-primary:hover {
    background: #1e4420;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

/* Split Sections */
.value-split,
.problem-split,
.testimonial-split,
.process-split,
.final-value-split,
.page-hero-split,
.about-story-split,
.team-split,
.approach-split,
.cta-about-split,
.services-hero-split,
.service-detail-split,
.services-cta-split,
.contact-hero-split,
.contact-info-split,
.contact-map-split,
.contact-cta-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.value-content,
.problem-content,
.testimonial-content,
.process-content,
.final-content,
.page-hero-content,
.story-content,
.team-content,
.approach-content,
.cta-content,
.services-hero-content,
.service-detail-content,
.services-cta-content,
.contact-hero-content,
.contact-info-content,
.map-content,
.contact-cta-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-visual,
.problem-visual,
.testimonial-visual,
.process-visual,
.final-visual,
.page-hero-visual,
.story-visual,
.team-visual,
.approach-visual,
.cta-visual,
.services-hero-visual,
.service-detail-visual,
.services-cta-visual,
.contact-hero-visual,
.contact-info-visual,
.map-visual,
.contact-cta-visual {
    flex: 1;
    display: flex;
}

.value-visual img,
.problem-visual img,
.testimonial-visual img,
.process-visual img,
.final-visual img,
.page-hero-visual img,
.story-visual img,
.team-visual img,
.approach-visual img,
.cta-visual img,
.services-hero-visual img,
.service-detail-visual img,
.services-cta-visual img,
.contact-hero-visual img,
.contact-info-visual img,
.map-visual img,
.contact-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.value-split,
.testimonial-split,
.final-value-split {
    background: #ffffff;
}

.problem-split,
.process-split,
.about-story-split,
.approach-split,
.service-detail-split:nth-of-type(even),
.contact-info-split {
    background: #f8f9fa;
}

.value-content h2,
.problem-content h2,
.testimonial-content h2,
.process-content h2,
.final-content h2,
.page-hero-content h1,
.story-content h2,
.team-content h2,
.approach-content h2,
.cta-content h2,
.services-hero-content h1,
.service-detail-content h2,
.services-cta-content h2,
.contact-hero-content h1,
.contact-info-content h2,
.map-content h2,
.contact-cta-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    font-weight: 700;
}

.value-content p,
.problem-content p,
.process-content p,
.final-content p,
.page-hero-content p,
.story-content p,
.team-content p,
.approach-content p,
.cta-content p,
.services-hero-content p,
.service-detail-content p,
.services-cta-content p,
.contact-hero-content p,
.contact-info-content p,
.map-content p,
.contact-cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

/* Trust Section */
.trust-section {
    padding: 5rem 3rem;
    background: #2c5f2d;
    color: #ffffff;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Services Preview */
.services-preview {
    padding: 5rem 3rem;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: auto;
}

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonial */
blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

cite {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c5f2d;
}

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

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

.form-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    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: #2c5f2d;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.cta-sticky {
    background: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.cta-sticky:hover {
    background: #1e4420;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 4rem 3rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-brand p {
    color: #b5b5b5;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-column a {
    color: #b5b5b5;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

.footer-bottom p {
    color: #b5b5b5;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

.values-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-intro h2 {
    font-size: 2.75rem;
    color: #2d2d2d;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

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

.why-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

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

.why-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Service Detail Sections */
.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features {
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

/* Service Packages */
.service-packages {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.packages-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.packages-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 700;
}

.packages-intro p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.package-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.package-card > p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
    padding-left: 0;
}

.package-card li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.package-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.package-price {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.price-total {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #4a4a4a;
    font-style: italic;
}

/* Pricing Notes */
.pricing-notes {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.notes-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

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

.note-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.note-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.note-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d2d2d;
    font-weight: 600;
}

.detail-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.detail-item a {
    color: #2c5f2d;
    font-weight: 600;
}

/* Contact Approach */
.contact-approach {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.approach-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

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

.approach-item {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid #2c5f2d;
}

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

.thanks-details strong {
    color: #2c5f2d;
}

/* Thanks Next Steps */
.thanks-next-steps {
    padding: 5rem 3rem;
    background: #ffffff;
}

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

.steps-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Thanks Resources */
.thanks-resources {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

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

.resources-container h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    font-weight: 700;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.resource-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 1.05rem;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Thanks Urgency */
.thanks-urgency {
    padding: 4rem 3rem;
    background: #2c5f2d;
    color: #ffffff;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.urgency-container p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.urgency-container a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2d2d2d;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.legal-content a {
    color: #2c5f2d;
    font-weight: 600;
}

.legal-content strong {
    color: #2d2d2d;
    font-weight: 600;
}

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

.cookies-table thead {
    background: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.cookies-table th {
    font-weight: 600;
    color: #2d2d2d;
}

.cookies-table td {
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .problem-split,
    .testimonial-split,
    .process-split,
    .final-value-split,
    .page-hero-split,
    .about-story-split,
    .team-split,
    .approach-split,
    .cta-about-split,
    .services-hero-split,
    .service-detail-split,
    .services-cta-split,
    .contact-hero-split,
    .contact-info-split,
    .contact-map-split,
    .contact-cta-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .problem-content,
    .testimonial-content,
    .process-content,
    .final-content,
    .page-hero-content,
    .story-content,
    .team-content,
    .approach-content,
    .cta-content,
    .services-hero-content,
    .service-detail-content,
    .services-cta-content,
    .contact-hero-content,
    .contact-info-content,
    .map-content,
    .contact-cta-content {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .page-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .value-content h2,
    .problem-content h2,
    .process-content h2,
    .final-content h2,
    .story-content h2,
    .team-content h2,
    .approach-content h2,
    .cta-content h2,
    .service-detail-content h2,
    .services-cta-content h2,
    .contact-info-content h2,
    .map-content h2,
    .contact-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-split {
        padding: 1.25rem 1.5rem;
    }

    .header-right {
        gap: 1.25rem;
    }

    .header-right a {
        font-size: 0.9rem;
    }

    .trust-container,
    .services-grid,
    .values-grid,
    .why-grid,
    .packages-grid,
    .notes-grid,
    .approach-grid,
    .faq-grid,
    .steps-grid,
    .resources-grid {
        flex-direction: column;
    }

    .service-card,
    .package-card,
    .trust-card,
    .value-item,
    .why-item,
    .note-item,
    .approach-item,
    .faq-item,
    .step-item,
    .resource-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2.25rem;
    }

    .thanks-hero h1 {
        font-size: 2.25rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .header-left .brand {
        font-size: 1.5rem;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}