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

html {
    scroll-behavior: smooth;
}

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #4a5d3f;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #6c757d;
    background-color: #f1f3f5;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 auto;
}

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

.main-nav a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #4a5d3f;
}

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

.hero-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(74, 93, 63, 0.7);
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: #f8f9fa;
}

.intro-cards {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4a5d3f;
}

.card-body p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.services-preview {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

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

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 19px;
    padding: 20px 20px 10px;
    color: #4a5d3f;
}

.service-card p {
    font-size: 14px;
    padding: 0 20px;
    color: #6c757d;
    flex-grow: 1;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #4a5d3f;
    padding: 16px 20px 8px;
    display: block;
}

.service-card .btn-select {
    margin: 12px 20px 20px;
    background-color: #4a5d3f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #4a5d3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #3a4d2f;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a5d3f;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #4a5d3f;
    transition: background-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background-color: #4a5d3f;
    color: #ffffff;
}

.form-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-wrapper > p {
    margin-bottom: 28px;
    color: #6c757d;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #4a5d3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #3a4d2f;
}

.process-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.process-card {
    background-color: #f8f9fa;
    padding: 32px 24px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a5d3f;
    opacity: 0.3;
    margin-bottom: 16px;
}

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

.process-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

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

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

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

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

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

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

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

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

.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: 13px;
    color: #adb5bd;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #a8dadc;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #4a5d3f;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detailed {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-image-container {
    flex: 1;
    min-width: 300px;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.service-detail-content > p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #495057;
    font-size: 14px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a5d3f;
    font-weight: 700;
}

.pricing-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #4a5d3f;
}

.about-content {
    padding: 60px 0;
}

.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.about-intro img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    margin-bottom: 70px;
}

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

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

.value-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4a5d3f;
}

.value-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 70px;
}

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

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

.team-member {
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 300px;
}

.team-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 16px;
    background-color: #e9ecef;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member p {
    font-size: 14px;
    color: #6c757d;
}

.philosophy-section {
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.philosophy-section p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.workshop-info {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    flex-wrap: wrap;
}

.workshop-info img {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.workshop-text {
    flex: 1;
    min-width: 300px;
}

.workshop-text h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.workshop-text p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #4a5d3f;
    font-weight: 600;
}

.contact-detail p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.contact-detail .no-link {
    color: #2c3e50;
    font-weight: 500;
}

.contact-detail .note {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

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

.map-box {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9ecef;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 60px;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-cta-section p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.directions-section {
    margin-bottom: 40px;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.direction-option {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.direction-option h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4a5d3f;
}

.direction-option p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-icon svg {
    color: #4a5d3f;
}

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

.thanks-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #495057;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a5d3f;
    font-weight: 700;
}

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #4a5d3f;
}

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

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-section ul li {
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .card-grid,
    .service-cards,
    .process-grid,
    .values-grid,
    .team-grid {
        gap: 16px;
    }

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

    .about-intro,
    .workshop-info {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}