* {
    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: #2c2c2c;
    background-color: #fafafa;
}

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

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

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6a4a;
}

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

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

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

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

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

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

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

.main-nav a:hover {
    color: #4a7c59;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 36px;
    color: #4a4a4a;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #3d6a4a;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #c5b8a8;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-section {
    padding: 100px 20px;
    background-color: #f9f7f4;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 28px;
}

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

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

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #4a7c59;
}

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

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    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: #4a7c59;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6a4a;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 20px;
    background-color: #f0ede7;
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: calc(33.333% - 22px);
    min-width: 280px;
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f7f4;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 20px;
    color: #555;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-page .cta-hero {
    margin-top: 32px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-page {
    padding: 80px 20px;
    background-color: #f9f7f4;
}

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.info-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-page {
    background-color: #ffffff;
}

.about-hero {
    padding: 100px 20px;
    background-color: #f9f7f4;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero-image {
        min-height: 300px;
    }

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .main-nav {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}