* {
    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-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-editorial {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

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

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

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

.editorial-layout {
    background-color: #fff;
}

.hero-editorial {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

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

.hero-text-overlay p {
    font-size: 19px;
    line-height: 1.6;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 30px;
}

.story-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-container h3 {
    font-size: 28px;
    margin: 60px 0 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #3a3a3a;
}

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

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
}

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

.btn-text-link {
    font-size: 19px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2a2a2a;
}

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

.service-card-editorial {
    margin: 70px 0;
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafafa;
    padding: 40px;
}

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

.service-content {
    flex: 1;
}

.service-content h4 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 25px 0;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.btn-select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333;
}

.btn-select-service.selected {
    background-color: #4a4a4a;
}

.cta-section-editorial {
    margin: 80px 0 60px;
    text-align: center;
    padding: 50px 30px;
    background-color: #f5f5f5;
}

.cta-section-editorial h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section-editorial p {
    font-size: 18px;
    color: #4a4a4a;
}

.form-container-editorial {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.form-container-editorial h3 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.form-consent {
    margin: 30px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4a4a4a;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
}

.form-consent a {
    color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 3px solid #999;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-header {
    padding: 80px 30px 50px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.page-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 400;
    color: #2a2a2a;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    background-color: #fafafa;
    padding: 35px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    background-color: #e8e8e8;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 300px;
}

.service-item-content {
    flex: 1.2;
}

.service-item-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-item-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-item-price {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 25px 0 20px;
}

.contact-info-block {
    background-color: #fafafa;
    padding: 40px;
    margin: 40px 0;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 15px;
}

.thanks-message {
    text-align: center;
    padding: 100px 30px;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-message p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-message .btn-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-message .btn-link:hover {
    background-color: #333;
}

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

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

    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    .story-container h2 {
        font-size: 30px;
    }

    .story-container h3 {
        font-size: 24px;
    }

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

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}