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

.ad-notice {
    background-color: #FFE4B5;
    color: #8B4513;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #DEB887;
}

.main-nav {
    background-color: #2C2C2C;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
}

.hero-card {
    margin: 0;
    background-color: #FFF;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    display: flex;
}

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

.intro-section {
    background-color: #F5F5F5;
    padding: 80px 24px;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #444;
}

.cards-grid {
    padding: 80px 24px;
    background-color: #FFF;
}

.cards-grid h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: #1A1A1A;
}

.card-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #4A7C59;
}

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

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

.story-section {
    padding: 80px 24px;
    background-color: #FAFAFA;
}

.story-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.story-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.story-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-cards {
    padding: 80px 24px;
    background-color: #2C2C2C;
    color: #FFF;
}

.testimonials-cards h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #FFF;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #3A3A3A;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #B0B0B0;
}

.services-preview {
    padding: 80px 24px;
    background-color: #FFF;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: #1A1A1A;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

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

.price {
    font-size: 28px;
    font-weight: bold;
    color: #4A7C59;
    margin-bottom: 16px;
}

.select-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #4A7C59;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-btn:hover {
    background-color: #3A6349;
}

.form-section {
    padding: 80px 24px;
    background-color: #F5F5F5;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2C2C2C;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #FFF;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #2C2C2C;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1A1A1A;
}

.trust-section {
    padding: 80px 24px;
    background-color: #FFF;
}

.trust-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.trust-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background-color: #1A1A1A;
    color: #B0B0B0;
    padding: 56px 24px 24px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFF;
    padding: 24px;
    box-shadow: 0 -4px 16px 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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #FFD700;
}

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

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

.cookie-btn.accept {
    background-color: #4A7C59;
    color: #FFF;
}

.cookie-btn.accept:hover {
    background-color: #3A6349;
}

.cookie-btn.reject {
    background-color: #666;
    color: #FFF;
}

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

.page-hero {
    background-color: #2C2C2C;
    color: #FFF;
    padding: 80px 24px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #D0D0D0;
}

.about-content {
    padding: 80px 24px;
    background-color: #FFF;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.about-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.value-item p {
    font-size: 15px;
    color: #555;
}

.cta-section {
    padding: 80px 24px;
    background-color: #4A7C59;
    color: #FFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #FFF;
    color: #4A7C59;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    color: #4A7C59;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #4A7C59;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 16px;
}

.cta-button-secondary:hover {
    background-color: #4A7C59;
    color: #FFF;
}

.services-detail {
    padding: 80px 24px;
    background-color: #FFF;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

.service-price {
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #4A7C59;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #4A7C59;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #3A6349;
}

.contact-section {
    padding: 80px 24px;
    background-color: #FFF;
}

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

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2C2C2C;
}

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

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

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

.contact-map {
    flex: 1;
    min-width: 320px;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.map-placeholder {
    padding: 48px 32px;
    border-radius: 8px;
    min-height: 300px;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.6;
}

.info-section {
    padding: 80px 24px;
    background-color: #F5F5F5;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.info-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 24px;
    background-color: #FFF;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
}

.legal-content em {
    color: #666;
    font-size: 14px;
}

.thanks-section {
    padding: 120px 24px;
    background-color: #FFF;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.service-highlight {
    font-size: 20px;
    padding: 16px 24px;
    background-color: #F5F5F5;
    border-radius: 8px;
    margin: 24px 0;
    display: inline-block;
}

.thanks-info {
    margin: 48px 0;
    text-align: left;
    display: inline-block;
    max-width: 500px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.thanks-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text {
        padding: 48px 32px;
    }

    .nav-menu {
        gap: 20px;
    }

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

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

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 16px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}