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

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

.ad-notice {
    background-color: #f4e5d3;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #d4c4b0;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 30px;
}

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text-overlay {
    text-align: left;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.15rem;
    color: #5a5a5a;
    font-style: italic;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.text-block {
    line-height: 1.8;
}

.text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2a2a2a;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.text-block ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-block ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.inline-image-section {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.inline-image-section figcaption {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #5a5a5a;
    font-style: italic;
    text-align: center;
    background-color: #f5f5f5;
}

.cta-inline {
    background-color: #f9f6f1;
    padding: 35px 30px;
    border-left: 4px solid #c9a870;
    margin: 30px 0;
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-inline p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.cta-button-text {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3d3d3d;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-button-text:hover {
    background-color: #1a1a1a;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 15px 25px;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-details {
    margin: 15px 25px;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 20px 25px 15px 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    margin: 0 25px 25px 25px;
    padding: 14px 30px;
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2a2a2a;
}

.select-service.selected {
    background-color: #c9a870;
}

.form-section {
    background-color: #f9f9f9;
    padding: 40px 35px;
    border: 1px solid #e0e0e0;
    margin: 40px 0;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section > p {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #4a4a4a;
}

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

.selected-service-info {
    background-color: #e8f4e8;
    padding: 20px;
    border-left: 4px solid #6da56d;
    margin-bottom: 20px;
}

.selected-service-info p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2a2a2a;
}

.selected-service-info strong {
    font-weight: 600;
}

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

.form-group label {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #2a2a2a;
}

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

.form-group textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-button {
    padding: 14px 35px;
    background-color: #3d3d3d;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

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

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2a2a2a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-content {
    min-height: 400px;
}

.thanks-message {
    background-color: #ffffff;
    padding: 50px 40px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.thanks-message h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.service-confirmation {
    background-color: #f0f8f0;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #6da56d;
}

.service-confirmation p {
    margin-bottom: 10px;
}

.selected-service-display {
    font-weight: 600;
    color: #2a2a2a;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #4a4a4a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #2a2a2a;
}

.legal-content {
    font-size: 0.98rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 18px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.footer-editorial {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 40px 30px 40px;
    margin-top: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.footer-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-block a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #444444;
    border-bottom: 1px solid #444444;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #909090;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #2a2a2a;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #3a3a3a;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

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

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

    .editorial-container {
        padding: 30px 20px;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

    .form-section {
        padding: 30px 20px;
    }

    .submit-button {
        width: 100%;
    }
}