* {
    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: #333;
    background-color: #FAFAFA;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7F8C8D;
    padding: 4px 12px;
    background-color: #ECF0F1;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 32px;
}

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

.nav a:hover {
    color: #8B7355;
}

.hero-card {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.intro-card {
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2C3E50;
}

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

.services-grid {
    padding: 80px 0;
}

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

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

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

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #D4B5A0;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2C3E50;
}

.card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #8B7355;
}

.btn-select {
    padding: 12px 24px;
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2C3E50;
}

.form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

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

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

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

.btn-submit {
    padding: 16px 32px;
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6F5B45;
}

.why-section {
    padding: 80px 0;
}

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2C3E50;
}

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

.why-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2C3E50;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.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;
}

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

.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: #95A5A6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.cookie-content a {
    color: #8B7355;
    text-decoration: none;
}

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

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

.btn-cookie {
    background-color: #8B7355;
    color: #FFFFFF;
}

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

.btn-cookie-secondary {
    background-color: #E0E0E0;
    color: #333;
}

.btn-cookie-secondary:hover {
    background-color: #CACACA;
}

.citation {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .service-card {
        width: 100%;
    }

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

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

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

    .intro-card {
        padding: 40px 30px;
    }

    .form-wrapper {
        padding: 40px 30px;
    }
}

.page-header {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495E;
}

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

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

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

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

.contact-info {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2C3E50;
}

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

.contact-info-item {
    margin-bottom: 16px;
}

.contact-info-item strong {
    color: #2C3E50;
}

.thanks-message {
    text-align: center;
    padding: 80px 20px;
}

.thanks-box {
    background-color: #FFFFFF;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-box h1 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 24px;
}

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

.thanks-box .selected-service-info {
    background-color: #F5F5F0;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-box .selected-service-info strong {
    color: #8B7355;
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    padding: 16px 32px;
    background-color: #8B7355;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 24px;
}

.btn-home:hover {
    background-color: #6F5B45;
}