/* 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;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Header */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
}

.logo:hover {
    color: #3a7a51;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2d5f3f;
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d5f3f;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a3d2e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 95, 63, 0.85) 0%, rgba(45, 95, 63, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 650px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5f3f;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
}

.cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Intro Block */
.intro-block {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Split Section */
.split-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.split-text p:last-child {
    margin-bottom: 0;
}

.split-image {
    flex: 1;
    background-color: #e8f4ed;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #2d5f3f 0%, #1d4d35 100%);
    padding: 90px 20px;
    color: #ffffff;
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.highlight-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.highlight-content p:last-child {
    margin-bottom: 0;
}

/* Services Overview */
.services-overview {
    background-color: #f5f7f5;
    padding: 100px 20px;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8f4ed;
}

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

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 0 25px 20px;
}

.btn-select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 25px 25px;
    border-radius: 5px;
}

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

/* Methodology Section */
.methodology-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.methodology-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5f3f;
    opacity: 0.3;
    min-width: 80px;
}

.method-step h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.method-step p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f0f4f1;
    padding: 90px 20px;
}

.testimonials {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

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

/* Form Section */
.form-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    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: #2d5f3f;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fef8f3;
    padding: 60px 20px;
    border-top: 2px solid #f0e5d8;
    border-bottom: 2px solid #f0e5d8;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #c8d8d0;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c8d8d0;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    white-space: nowrap;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d5f3f 0%, #1d4d35 100%);
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

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

.page-hero .hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    background-color: #ffffff;
    padding: 80px 20px;
}

.intro-large {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.about-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    background-color: #f5f7f5;
    padding: 90px 20px;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #2d5f3f;
}

.value-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.expertise-item img {
    flex: 1;
    max-width: 500px;
    height: 350px;
    border-radius: 8px;
    background-color: #e8f4ed;
}

.expertise-content {
    flex: 1;
}

.expertise-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.experience-section {
    background-color: #f5f7f5;
    padding: 80px 20px;
}

.experience-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.experience-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.approach-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.approach-content {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #e8f4ed;
}

.approach-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

.cta-section {
    background-color: #f5f7f5;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
}

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

/* Services Page */
.services-detailed {
    background-color: #ffffff;
    padding: 80px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    font-size: 15px;
    color: #555;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f4ed;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 8px;
}

.service-pricing-box {
    background-color: #f5f7f5;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-label {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

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

.service-pricing-box .btn-select-service {
    margin: 0 0 0 auto;
}

.services-cta {
    background-color: #f5f7f5;
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Contact Page */
.contact-content {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    color: #2d5f3f;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #e8f4ed;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
}

.contact-approach {
    background-color: #f5f7f5;
    padding: 80px 20px;
}

.contact-approach h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.faq-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

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

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

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

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.final-cta {
    background-color: #f5f7f5;
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-email-highlight {
    font-size: 22px;
    font-weight: 600;
    color: #2d5f3f;
    margin-top: 30px;
}

/* Thanks Page */
.thanks-section {
    background-color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.thanks-detail {
    font-size: 18px;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-info {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5f3f;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    border-radius: 5px;
}

.btn-secondary:hover {
    background-color: #f0f4f1;
}

.next-steps {
    background-color: #f5f7f5;
    padding: 80px 20px;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 30px;
}

.step-marker {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-resources {
    background-color: #ffffff;
    padding: 80px 20px;
}

.thanks-resources h2 {
    font-size: 36px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-resources .section-intro {
    margin-bottom: 50px;
}

.resource-links {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    background-color: #f5f7f5;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background-color: #e8f4ed;
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 20px;
    color: #2d5f3f;
    margin-bottom: 12px;
    font-weight: 600;
}

.resource-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #3a7a51;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f7f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content,
    .expertise-item,
    .approach-content,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .expertise-item.reverse {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

    .resource-links {
        flex-direction: column;
    }

    .service-pricing-box {
        flex-direction: column;
        text-align: center;
    }

    .service-pricing-box .btn-select-service {
        margin: 20px 0 0;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }
}