/* Reset & 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: #2c3e50;
    background-color: #ffffff;
}

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

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #495057;
    font-weight: 500;
    font-size: 15px;
}

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

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

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d8e9e3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.92) 0%, rgba(29, 53, 87, 0.88) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    text-align: center;
    color: #ffffff;
}

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

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

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #52b788;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #40916c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 183, 136, 0.3);
}

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

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro Section */
.intro-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1d3557;
    font-weight: 700;
}

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

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

.problem-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    width: 100%;
    border-radius: 8px;
    background-color: #e9ecef;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1d3557;
    font-weight: 700;
}

.problem-list {
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #495057;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e63946;
    font-size: 24px;
    font-weight: bold;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
}

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

.solution-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-header p {
    font-size: 19px;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    padding: 80px 20px 100px;
    background-color: #f8f9fa;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d8e9e3;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d3557;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    font-size: 14px;
    color: #6c757d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 20px;
    margin-top: auto;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

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

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

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1d3557;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #52b788;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1d3557;
    font-weight: 700;
}

.benefit-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial:last-child {
    margin-bottom: 0;
}

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

.testimonial-author {
    font-size: 16px;
    color: #2d6a4f;
    font-weight: 600;
}

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

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

.form-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1d3557;
    font-weight: 700;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 14px;
    color: #6c757d;
}

.checkbox-label a {
    color: #2d6a4f;
    text-decoration: underline;
}

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

.btn-submit:hover {
    background-color: #1b4332;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 10px;
}

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

.footer-column a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

.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: 15px;
    color: #495057;
    line-height: 1.6;
}

.cookie-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #1b4332;
}

.btn-cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

.btn-cookie-reject:hover {
    background-color: #dee2e6;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1d3557;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    background-color: #e9ecef;
}

/* Values Section */
.values-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d3557;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
    color: #1d3557;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #52b788;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 17px;
    color: #495057;
}

/* Approach Section */
.approach-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1d3557;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(20% - 24px);
    min-width: 200px;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1d3557;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

/* Projects Highlight */
.projects-highlight {
    padding: 100px 20px;
    background-color: #ffffff;
}

.projects-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1d3557;
    font-weight: 700;
}

.projects-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.project-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #d8e9e3;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1d3557;
    font-weight: 700;
}

.project-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 10px;
}

.project-year {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px 0;
}

.service-detail-card:not(:last-child) {
    border-bottom: 2px solid #e9ecef;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1d3557;
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 25px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1d3557;
    font-weight: 700;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2d6a4f;
    font-weight: 600;
}

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

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e9ecef;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1d3557;
    font-weight: 700;
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

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

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1d3557;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #52b788;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 19px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.thanks-info p {
    font-size: 18px;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

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

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

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

.next-steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.next-step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1d3557;
    font-weight: 700;
}

.next-step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 15px;
}

.next-step-card a {
    color: #2d6a4f;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1d3557;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d6a4f;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
    font-weight: 600;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #e9ecef;
    }

    .nav-links a {
        display: block;
        padding: 18px 20px;
    }

    .menu-toggle {
        display: flex;
    }

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

    .problem-grid,
    .about-grid {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

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

    .hero-content p {
        font-size: 18px;
    }

    .intro-content h2,
    .problem-text h2,
    .solution-header h2,
    .benefits-section h2,
    .values-section h2,
    .team-section h2,
    .approach-section h2,
    .projects-highlight h2,
    .cta-section h2 {
        font-size: 32px;
    }

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

    .benefit-item {
        flex: 1 1 calc(50% - 20px);
    }

    .value-card,
    .project-card,
    .next-step-card {
        flex: 1 1 100%;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }
}

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

    .cta-primary,
    .cta-secondary {
        padding: 14px 30px;
        font-size: 15px;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}