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

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

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

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

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

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

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

.hero-section {
    padding: 80px 0;
    background-color: #f9faf8;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fff;
    color: #2c5f2d;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

.intro-section {
    padding: 70px 0;
    text-align: center;
    background-color: #fff;
}

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

.intro-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.services-grid {
    padding: 80px 0;
    background-color: #f9faf8;
}

.services-grid h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 250px;
    background-color: #e8ede8;
}

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

.card-content {
    padding: 25px;
}

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #234a24;
}

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 80px 0;
    background-color: #f9faf8;
}

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

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

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    width: calc(33.333% - 20px);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    color: #2c5f2d;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #fff;
}

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

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

.disclaimer {
    font-size: 12px;
    color: #666;
    max-width: 900px;
    margin: 15px auto 0;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #234a24;
}

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

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

.page-header {
    padding: 60px 0;
    background-color: #f9faf8;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.about-content,
.contact-content,
.legal-content,
.services-detailed {
    padding: 70px 0;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-intro img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ede8;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.values-section,
.team-section,
.mission-section {
    margin-bottom: 60px;
}

.values-section h2,
.team-section h2,
.mission-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.value-card {
    background-color: #f9faf8;
    padding: 25px;
    border-radius: 8px;
    width: calc(50% - 15px);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.value-card p {
    color: #666;
    font-size: 15px;
}

.team-section p,
.mission-section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.contact-item p {
    color: #555;
    font-size: 16px;
}

.contact-image {
    flex: 1;
    background-color: #e8ede8;
}

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

.additional-info {
    max-width: 800px;
    margin: 0 auto;
}

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

.additional-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #2c5f2d;
}

.legal-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-text li {
    color: #555;
    font-size: 15px;
    margin-bottom: 8px;
}

.legal-text a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-confirmation {
    font-size: 20px;
    color: #2c5f2d;
    font-weight: 600;
    margin: 25px 0;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8ede8;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 30px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    color: #555;
    font-size: 15px;
    margin-bottom: 8px;
}

.cta-section {
    padding: 80px 0;
    background-color: #f9faf8;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content,
    .about-intro,
    .contact-grid,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-image,
    .about-intro img,
    .contact-image,
    .service-detail-image {
        width: 100%;
    }

    .service-card,
    .testimonial-card,
    .value-card {
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
    }
}