* {
    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.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #8b6f47;
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e0d5c7;
}

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

.hero-text-centered {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 60px;
    max-width: 900px;
    width: 90%;
}

.hero-text-centered h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.drop-cap::first-letter {
    float: left;
    font-size: 72px;
    line-height: 60px;
    padding-right: 8px;
    margin-top: 3px;
    font-weight: 700;
    color: #8b6f47;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-narrow h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.inline-image {
    margin: 45px 0;
    background-color: #e8e4de;
}

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

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-left: 5px solid #8b6f47;
    font-style: italic;
    font-size: 19px;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: #777;
}

.trust-section {
    background-color: #f9f7f4;
    padding: 35px 40px;
    margin: 45px 0;
    border-radius: 8px;
}

.trust-section h3 {
    margin-top: 0;
    font-size: 22px;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 17px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-inline {
    margin: 45px 0;
    padding: 30px;
    background-color: #fefefe;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.services-embedded {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 10px;
    color: #2c3e50;
}

.service-card p {
    margin: 15px 25px;
    font-size: 16px;
    color: #555;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 25px 15px;
}

.btn-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 25px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-select:hover {
    background-color: #6f5839;
    transform: translateY(-2px);
}

.btn-select:active {
    transform: translateY(0);
}

.cta-inline {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-inline p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #f5f5f5;
}

.btn-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background-color: #f5f5f5;
    color: #6f5839;
}

.disclaimer {
    background-color: #fff9e6;
    border: 1px solid #f0e68c;
    padding: 25px;
    margin: 50px 0;
    border-radius: 5px;
    font-size: 15px;
    color: #666;
}

.references {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.references h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.references a {
    color: #8b6f47;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.form-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    margin-top: 60px;
}

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

.form-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

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

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 15px 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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #6f5839;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    max-width: 720px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 19px;
    color: #666;
    font-weight: 300;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.principle-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b6f47;
}

.principle-item h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
}

.principle-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #555;
}

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

.services-intro {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.features {
    list-style: none;
    padding: 0;
    margin: 15px 25px;
}

.features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

.services-note {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.services-note h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

.services-note p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.thanks-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

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

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

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

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

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

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

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

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-text-centered {
        bottom: 40px;
        padding: 25px 30px;
    }

    .hero-text-centered h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .content-narrow {
        padding: 30px 20px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 32px;
    }
}