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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e7cc3;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --background-cream: #faf7f2;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.ad-disclosure {
    background-color: var(--background-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.navigation {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    position: relative;
    background-color: var(--background-cream);
}

.hero-content {
    padding: 80px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.intro-story {
    padding: 80px 20px;
    background-color: var(--white);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.services-cards {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.services-cards h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-content .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #7a6baa;
    transform: scale(1.02);
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.trust-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.testimonials {
    padding: 80px 20px;
    background-color: var(--background-cream);
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonial .quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--white);
}

.benefits-reveal h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 12px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.service-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    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: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: var(--background-light);
    cursor: not-allowed;
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: var(--background-cream);
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    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: 30px;
}

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

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-hero {
    padding: 80px 20px 50px;
    background-color: var(--background-cream);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.about-content {
    padding: 80px 20px;
    background-color: var(--white);
}

.content-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

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

.philosophy h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.philosophy p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.values {
    padding: 80px 20px;
    background-color: var(--white);
}

.values h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-cream);
    padding: 35px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.approach {
    padding: 80px 20px;
    background-color: var(--background-cream);
}

.approach h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.approach-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #c59563;
    transform: scale(1.02);
}

.services-detailed {
    padding: 60px 20px;
    background-color: var(--white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.service-detail-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-section {
    padding: 60px 20px;
    background-color: var(--background-cream);
}

.info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.info-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-note {
    background-color: var(--background-cream);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.step {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-color);
}

.last-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .trust-content,
    .content-split,
    .service-detail-card {
        flex-direction: column;
    }

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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