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

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

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #2d5f4d 0%, #3a7560 100%);
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2d5f4d;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.intro-section {
    padding: 100px 0;
    background: #f8faf9;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2d5f4d;
    line-height: 1.3;
}

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

.image-block {
    flex: 1;
    background: #d4e3db;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-highlight {
    padding: 100px 0;
    background: #ffffff;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d5f4d;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #6c757d;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.price {
    padding: 0 25px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2d5f4d;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2d5f4d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #234739;
}

.trust-section {
    padding: 100px 0;
    background: #f0f7f4;
}

.trust-content h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2d5f4d;
}

.trust-items {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

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

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

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5f4d 0%, #3a7560 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.submit-button:hover {
    background: #234739;
}

.main-footer {
    background: #1a2f26;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #b8c9c2;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

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

.footer-bottom p {
    color: #b8c9c2;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #8fa89e;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #7fd4b8;
}

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

.accept-btn,
.reject-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.accept-btn:hover {
    background: #234739;
}

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

.reject-btn:hover {
    background: #5a6268;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #2d5f4d;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 35px;
}

.thanks-container a {
    display: inline-block;
    padding: 16px 40px;
    background: #2d5f4d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #234739;
}

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

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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