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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8b6f47;
}

.nav-link.active {
    color: #8b6f47;
    font-weight: 600;
}

.ad-label {
    font-size: 11px;
    color: #999;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(139, 111, 71, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b6f47;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #8b6f47;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #8b6f47;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.card-body {
    padding: 30px;
}

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

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

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

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

.btn-select:hover {
    background-color: #6f5838;
}

.form-section {
    padding: 90px 0;
    background-color: #f5f2ed;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

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

.form-card > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.values {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #fafafa;
    border-radius: 10px;
    border-left: 4px solid #8b6f47;
}

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

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    margin-top: 15px;
    opacity: 0.9;
}

.about-intro {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b0;
}

.process {
    padding: 90px 0;
    background-color: #fafafa;
}

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

.process-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 35px 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.process-number {
    font-size: 40px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.philosophy {
    padding: 90px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.philosophy-card h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.philosophy-card p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

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

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

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #fafafa;
    border-radius: 10px;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b6f47;
}

.team-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b0;
}

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

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
    font-size: 18px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #8b6f47;
    margin-bottom: 10px;
}

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

.contact-image {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b0;
}

.map-section {
    padding: 60px 0 90px;
    background-color: #fafafa;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e8e0d5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 20px;
    color: #8b6f47;
    font-weight: 600;
}

.thanks-section {
    padding: 120px 0;
    background-color: #fafafa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b6f47;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-card > p {
    font-size: 19px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f5f2ed;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

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

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

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

.legal-card h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #8b6f47;
}

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

.legal-card ul {
    margin: 15px 0 15px 25px;
}

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

.legal-card em {
    color: #999;
    font-size: 15px;
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 16px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-cookie:first-child {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-cookie:first-child:hover {
    background-color: #6f5838;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cookie.btn-secondary:hover {
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .service-card {
        width: 100%;
    }

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

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

    .about-image,
    .contact-image,
    .service-detail-image {
        height: 300px;
    }

    .section-title {
        font-size: 32px;
    }

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

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