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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: #555;
    color: #ffffff;
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c7a5f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #777;
    font-style: italic;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-section {
    width: 100%;
    background-color: #2c5f7a;
}

.hero-image {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 122, 95, 0.85), rgba(44, 95, 122, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c7a5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    background-color: #f9f9f9;
    padding: 80px 30px;
}

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

.intro-section h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.services-preview {
    background-color: #ffffff;
    padding: 90px 30px;
}

.container-wide {
    max-width: 1240px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

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

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

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.card-content {
    padding: 28px;
}

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

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2c7a5f;
    margin-bottom: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c7a5f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f4f7f9;
    padding: 80px 30px;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

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

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

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

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

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

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

.trust-section {
    background-color: #ffffff;
    padding: 80px 30px;
}

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

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

.trust-item {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c7a5f;
}

.trust-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.cta-section {
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

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

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

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