* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #1a472a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f4f6f5;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2d5f3f;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #e67e22;
}

.hero-image {
    flex: 1;
    background-color: #d4e3d8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.problem-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2,
.content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a472a;
    line-height: 1.3;
}

.content-left p,
.content-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2d5f3f;
    margin-top: 30px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a472a;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e8f1ed;
}

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

.reference-note {
    margin-top: 25px;
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.reference-note a {
    color: #2d5f3f;
    text-decoration: none;
}

.reference-note a:hover {
    text-decoration: underline;
}

.services-overview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a472a;
}

.section-header p {
    font-size: 19px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e1e8e3;
    padding: 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.select-service.selected {
    background-color: #f39c12;
}

.form-section {
    padding: 100px 40px;
    background-color: #f4f6f5;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 45px;
}

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

.form-intro p {
    font-size: 18px;
    color: #6c757d;
}

.service-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid #2d5f3f;
    border-radius: 4px;
}

.testimonial p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.safety-section {
    padding: 80px 40px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-align: center;
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
}

.safety-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.safety-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a472a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: #d1e3d8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.references li {
    font-size: 13px;
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1e3d8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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