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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #6f5d46;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.intro-grid {
    display: flex;
    gap: 30px;
}

.intro-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.intro-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #6f5d46;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-card p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-submit:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
    transform: none;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 0;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    color: var(--bg-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--bg-light);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header {
    padding: 60px 0 40px;
    background-color: var(--bg-white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
}

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

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.contact-additional h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-additional p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.visit-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.visit-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

.visit-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.visit-card p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto 60px;
    background-color: var(--bg-white);
    padding: 60px 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.thanks-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-card h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.next-steps-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.next-steps-card h2 {
    font-size: 2rem;
    margin-bottom: 36px;
    text-align: center;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .intro-grid,
    .testimonials-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .value-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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