* {
    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: #fff;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1b4332;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.hero-image {
    flex: 1;
    background: #d4e7dd;
    overflow: hidden;
}

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

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.story-image {
    flex: 1;
    background: #e8f5e9;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1b4332;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.insight-split {
    display: flex;
    background: #f1f8f4;
    padding: 5rem 0;
}

.insight-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1b4332;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.insight-image {
    flex: 1;
    background: #d4e7dd;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.trust-container h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1b4332;
}

.testimonials {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #2d6a4f;
}

.benefits-split {
    display: flex;
    background: #fff;
    padding: 5rem 0;
}

.benefits-image {
    flex: 1;
    background: #e8f5e9;
}

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

.benefits-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1b4332;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.benefit-list li strong {
    color: #2d6a4f;
}

.services-reveal {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1b4332;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8f5e9;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1b4332;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d6a4f;
    padding: 0 1.5rem 1rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1b4332;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

@media (max-width: 968px) {
    .hero-split,
    .story-container,
    .insight-split,
    .benefits-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .testimonials {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
