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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 12px;
    border-radius: 3px;
}

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

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-content {
    background-color: #ffffff;
}

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

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

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 60px 40px 40px;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-narrow h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f3;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    background-color: #f5f5f3;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    color: #8b6f47;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #8b6f47;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.cta-link:hover {
    color: #6b4f27;
    border-color: #6b4f27;
}

.section-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
}

.services-editorial {
    background-color: #f9f8f6;
    padding: 80px 20px;
}

.services-editorial h2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.services-editorial .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-form {
    max-width: 1000px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

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

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

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #d4c4a8;
}

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

.service-card h3 {
    font-size: 1.5rem;
    padding: 25px 25px 15px;
    margin: 0;
}

.service-card p {
    padding: 0 25px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    padding: 0 25px 20px;
}

.service-selector {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: #f5f5f3;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-selector:hover {
    background-color: #ece9e4;
}

.service-selector input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-selector span {
    font-size: 1rem;
    font-weight: 600;
}

.form-fields {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.form-fields h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fafafa;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #8b6f47;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-box {
    background-color: #f0ede8;
    border-left: 4px solid #8b6f47;
    padding: 25px;
    margin: 50px 0;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-section {
    background-color: #f9f8f6;
    padding: 60px 20px;
}

.testimonial {
    border-left: 3px solid #8b6f47;
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.cta-final {
    background-color: #2c2c2c;
    padding: 80px 20px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    background-color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.service-detail-card {
    margin-bottom: 60px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #d4c4a8;
}

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

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0 20px 30px;
}

.service-detail-content li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-section {
    padding: 40px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

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

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

.thanks-box h1 {
    color: #8b6f47;
}

.service-confirmation {
    background-color: #f0ede8;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-content h1 {
    border-bottom: 2px solid #8b6f47;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.legal-content h2 {
    margin-top: 40px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: none;
    border-bottom: 1px solid #8b6f47;
}

.legal-content a:hover {
    color: #6b4f27;
    border-color: #6b4f27;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: #ffffff;
    padding: 25px;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie {
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie:first-child:hover {
    background-color: #6b4f27;
}

.btn-cookie:last-child {
    background-color: #555;
    color: #ffffff;
}

.btn-cookie:last-child:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-narrow h1 {
        font-size: 2rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}
