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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #e8b4a8;
    --accent-color: #c9856f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.hero-full {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.narrow-content p {
    margin-bottom: 20px;
}

.image-text-overlay {
    padding: 0;
}

.overlay-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.overlay-container img {
    width: 60%;
    height: 600px;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    right: 80px;
    background-color: var(--bg-white);
    padding: 60px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.overlay-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.overlay-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.insight-block {
    padding: 120px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.content-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.visual-benefit {
    position: relative;
    height: 700px;
}

.visual-benefit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-caption {
    position: absolute;
    bottom: 60px;
    left: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 450px;
}

.benefit-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-caption p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-indicators {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-inline {
    padding: 100px 20px;
    background-color: var(--secondary-color);
}

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

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.service-reveal {
    padding: 120px 20px;
}

.reveal-intro {
    text-align: center;
    margin-bottom: 80px;
}

.reveal-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reveal-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
}

.service-card .select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #234a30;
}

.form-section {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.service-display {
    padding: 15px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #234a30;
}

.final-trust {
    padding: 100px 20px;
}

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

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.disclaimer-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    color: #cccccc;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 25px 20px;
    z-index: 999;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--bg-white);
    flex: 1;
    min-width: 300px;
}

.cookie-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: #666;
    color: var(--bg-white);
}

.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 100px;
}

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

.about-story {
    padding: 100px 20px;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

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

.philosophy-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-section {
    padding: 100px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--secondary-color);
}

.values-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about,
.cta-services {
    padding: 100px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-intro {
    padding: 80px 20px;
    text-align: center;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-detail-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #234a30;
}

.additional-services {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.additional-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.additional-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.additional-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-content {
    padding: 100px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-info {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.location-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-cta {
    padding: 100px 20px;
    background-color: var(--primary-color);
}

.thanks-hero {
    padding: 150px 20px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 80px 20px;
}

.details-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 400px;
}

.detail-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.detail-card ol {
    padding-left: 20px;
}

.detail-card ol li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.selected-service-display {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-light);
    padding: 40px;
}

.selected-service-display h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.selected-service-display p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-explore {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.explore-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.explore-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.explore-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.explore-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #234a30;
}

.legal-page {
    padding: 150px 20px 80px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container em {
    color: var(--text-light);
}

.legal-container strong {
    color: var(--text-dark);
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 20px;
        gap: 20px;
        display: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .overlay-container {
        flex-direction: column;
        min-height: auto;
    }

    .overlay-container img {
        width: 100%;
        height: 400px;
    }

    .overlay-text {
        position: static;
        width: 100%;
        padding: 40px 20px;
    }

    .benefit-caption {
        position: static;
        margin: 20px;
        max-width: none;
    }

    .story-grid,
    .service-detail,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .trust-grid,
    .values-list,
    .footer-content {
        gap: 30px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .details-wrapper {
        flex-direction: column;
    }

    .detail-card,
    .selected-service-display {
        min-width: auto;
    }
}