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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Asymmetric Layout */
.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a4f;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2d7a4f;
}

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

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

/* Hero Section - Asymmetric Offset */
.hero-section {
    padding: 80px 40px 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f2 100%);
}

.hero-offset {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-block {
    flex: 0.8;
    position: relative;
    transform: translateY(-30px);
}

.hero-image-block img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #236038;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #2d7a4f;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

/* Problem Section - Asymmetric */
.problem-section {
    background-color: #f5f7fa;
    padding: 120px 40px;
}

.problem-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.problem-image {
    flex: 0.7;
    position: relative;
    transform: translateX(-30px);
}

.problem-image img {
    border-radius: 12px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.1);
}

.problem-content {
    flex: 1.3;
}

.problem-content h2 {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 30px;
    line-height: 1.3;
}

.problem-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: #2d7a4f;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Services Preview - Asymmetric Grid */
.services-preview {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-bottom: 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 44px;
    color: #1a2332;
    margin-bottom: 15px;
}

.services-header-offset p {
    font-size: 19px;
    color: #5a6c7d;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    transition: all 0.3s ease;
}

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

.service-card.large-card {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #2d7a4f 0%, #236038 100%);
    color: #ffffff;
}

.service-card.large-card h3,
.service-card.large-card p,
.service-card.large-card .price {
    color: #ffffff;
}

.service-card.featured {
    border: 2px solid #2d7a4f;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2d7a4f;
    margin: 20px 0;
}

.btn-service {
    padding: 12px 28px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

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

.service-card.large-card .btn-service {
    background-color: #ffffff;
    color: #2d7a4f;
}

.service-card.large-card .btn-service:hover {
    background-color: #f8f9fa;
}

/* Trust Section */
.trust-section {
    background-color: #1a2332;
    color: #ffffff;
    padding: 100px 40px;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.trust-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1d8e0;
}

/* CTA Floating - Offset */
.cta-floating {
    padding: 80px 40px;
    background: linear-gradient(135deg, #e8f0f2 0%, #f5f7fa 100%);
}

.cta-box-offset {
    max-width: 900px;
    margin: 0 auto 0 120px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-box-offset h3 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 15px;
}

.cta-box-offset p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

/* Testimonials - Asymmetric */
.testimonials-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    border-left: 4px solid #2d7a4f;
}

.testimonial-card.offset {
    transform: translateY(30px);
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #5a6c7d;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f7fa;
    padding: 100px 40px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    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: #2d7a4f;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #236038;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff8e1;
    padding: 50px 40px;
    border-top: 3px solid #ffb74d;
}

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

.disclaimer-content h4 {
    font-size: 20px;
    color: #f57c00;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d7a4f;
}

.footer-column p {
    font-size: 15px;
    color: #d1d8e0;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: #d1d8e0;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2d7a4f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #236038;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Page Hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #2d7a4f 0%, #236038 100%);
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: #d1f2e1;
}

/* About Page Styles */
.about-story {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    background-color: #f5f7fa;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 42px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.value-item h3 {
    font-size: 26px;
    color: #2d7a4f;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro {
    margin-bottom: 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 19px;
    color: #5a6c7d;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 8px;
}

.team-member span {
    display: block;
    font-size: 15px;
    color: #2d7a4f;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.approach-section {
    background-color: #f5f7fa;
    padding: 100px 40px;
}

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

.approach-content h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 60px;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: #e8f0f2;
}

.step-item h4 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.stats-visual {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-visual h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 60px;
}

.stats-display {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-large {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 56px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 18px;
    color: #5a6c7d;
}

.cta-about {
    background: linear-gradient(135deg, #2d7a4f 0%, #236038 100%);
    padding: 80px 40px;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-content h3 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-about-content p {
    font-size: 19px;
    color: #d1f2e1;
    margin-bottom: 35px;
}

/* Services Page Styles */
.services-intro {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 20px;
}

.services-intro-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.service-detail-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-card.featured-service {
    border: 2px solid #2d7a4f;
}

.service-detail-card.premium-service {
    border: 3px solid #2d7a4f;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    background-color: #f8f9fa;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    font-size: 28px;
    color: #1a2332;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
}

.service-body {
    padding: 40px;
}

.service-body > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-body h4 {
    font-size: 20px;
    color: #1a2332;
    margin: 25px 0 15px;
}

.service-body ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 25px;
}

.service-body ul li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-main {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    font-size: 20px;
    color: #2d7a4f;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map-block {
    flex: 1;
}

.contact-map-block img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.map-caption {
    font-size: 15px;
    color: #5a6c7d;
    font-style: italic;
}

.visit-info {
    background-color: #f5f7fa;
    padding: 80px 40px;
}

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

.visit-content h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 50px;
    text-align: center;
}

.visit-options {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.visit-option {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.visit-option h3 {
    font-size: 24px;
    color: #2d7a4f;
    margin-bottom: 15px;
}

.visit-option p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-section {
    padding: 100px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 50px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2d7a4f;
}

.faq-item h4 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 18px;
    color: #2d7a4f;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 26px;
    color: #1a2332;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: disc;
    padding-left: 25px;
}

.thanks-next-steps ul li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a2332;
    margin: 35px 0 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #2d7a4f;
    margin: 25px 0 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #2d7a4f;
    margin: 20px 0 12px;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-right: 0;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-image-block {
        transform: translateY(0);
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .problem-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .problem-image {
        transform: translateX(0);
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .cta-box-offset {
        margin: 0 auto;
        padding: 40px;
    }

    .testimonials-asymmetric {
        flex-direction: column;
    }

    .testimonial-card.offset {
        transform: translateY(0);
    }

    .form-wrapper {
        padding: 40px 25px;
    }

    .story-layout {
        flex-direction: column;
    }

    .team-layout {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .stats-display {
        flex-direction: column;
    }

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

    .service-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .visit-options {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-cta {
        flex-direction: column;
    }
}