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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f6f3;
}

.ad-notice {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.nav-floating {
    display: flex;
    gap: 30px;
}

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

.nav-floating a:hover {
    color: #8b7355;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-card {
    display: flex;
    margin: 40px auto;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6f5a42;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.intro-text p {
    font-size: 17px;
    color: #555555;
}

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

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

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

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.card-content p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

.select-service {
    padding: 12px 25px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.selected-service-display {
    font-size: 17px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    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: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.trust-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f6f3;
    border-left: 4px solid #8b7355;
    border-radius: 6px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #444444;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 14px;
    color: #888888;
    font-style: normal;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.disclaimer-card {
    background-color: #fff8e6;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e6d5a0;
}

.disclaimer-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6f5a42;
}

.btn-reject {
    background-color: #555555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #3d3d3d;
}

.page-hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    margin-bottom: 40px;
}

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

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

.about-content {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.about-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.card-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

.values-section {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f8f6f3;
    border-radius: 8px;
}

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

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

.approach-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.approach-card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

.services-detail {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
}

.service-image {
    flex: 1;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.cta-card {
    background-color: #8b7355;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 17px;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.contact-card,
.location-card,
.visit-info-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-card h2,
.location-card h2,
.visit-info-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1;
    min-width: 200px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8b7355;
}

.info-item p {
    font-size: 15px;
    color: #555555;
}

.location-card p,
.visit-info-card p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
}

.location-card ul {
    margin-top: 15px;
    margin-left: 20px;
}

.location-card li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 8px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #6f5a42;
}

.thanks-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    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: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 18px;
    color: #555555;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 16px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6f5a42;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c2c2c;
    text-align: center;
}

.legal-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.legal-section li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #8b7355;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-update {
    text-align: center;
    font-size: 14px;
    color: #888888;
    margin-top: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-floating {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-floating.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-card {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

    .service-card {
        width: 100%;
    }

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

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

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

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

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