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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    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: 24px;
    font-weight: 700;
    color: #6f4e37;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #6f4e37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #8b7355;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.85), rgba(139, 115, 85, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

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

.intro-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.services-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #6f4e37;
    margin-bottom: 20px;
}

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

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

.form-section {
    padding: 100px 0;
    background-color: #f8f5f1;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.about-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.about-image {
    width: 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d7ccc8;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.text-link {
    color: #6f4e37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #5a3d2b;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #6f4e37;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #6f4e37, #8b7355);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    font-weight: 300;
}

.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-image {
    width: 45%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d7ccc8;
}

.content-text {
    width: 55%;
}

.content-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    width: calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #6f4e37;
}

.value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a5a;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.team-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: #6f4e37;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5a3d2b;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

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

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

.service-detail-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d7ccc8;
}

.service-detail-content {
    width: 55%;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #6f4e37;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6f4e37;
    font-weight: 700;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info {
    width: 40%;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #6f4e37;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual {
    width: 60%;
}

.contact-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d7ccc8;
}

.additional-info {
    padding: 60px 0;
    background-color: #f8f5f1;
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.info-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f5f1;
    min-height: calc(100vh - 300px);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #4caf50;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.thanks-info {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #6f4e37;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 14px 35px;
    background-color: #6f4e37;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a3d2b;
}

.btn-secondary {
    padding: 14px 35px;
    background-color: #ffffff;
    color: #6f4e37;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #6f4e37;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6f4e37;
    color: #ffffff;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #6f4e37;
}

.legal-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.legal-text ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .service-card {
        width: 100%;
    }

    .about-layout,
    .content-layout,
    .service-detail-layout,
    .contact-grid {
        flex-direction: column;
    }

    .about-image,
    .about-text,
    .content-image,
    .content-text,
    .service-detail-image,
    .service-detail-content,
    .contact-info,
    .contact-visual {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}