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

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

.ad-disclosure {
    background: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.nav-minimal {
    background: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

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

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4c5b9;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 17px;
}

.content-narrow h2 {
    font-size: 28px;
    margin: 50px 0 24px;
    font-weight: 500;
    color: #2c2c2c;
}

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

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

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

.trust-indicator {
    background: #f9f6f3;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #8b7355;
}

.trust-indicator p {
    margin: 0;
    font-size: 18px;
    color: #2c2c2c;
}

.testimonial-inline {
    background: #fafafa;
    padding: 35px;
    margin: 45px 0;
    border-left: 3px solid #c9b8a8;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

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

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

.service-card-editorial {
    max-width: 900px;
    margin: 0 auto 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-image-editorial {
    width: 100%;
    height: 350px;
    background-color: #e8dfd7;
}

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

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

.service-content-editorial h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

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

.service-details {
    color: #666;
    font-size: 15px;
    font-style: italic;
}

.price-editorial {
    font-size: 24px;
    font-weight: 600;
    color: #8b7355;
    margin: 20px 0;
}

.cta-service {
    background: #2c2c2c;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #8b7355;
}

.form-section-editorial {
    background: #ffffff;
    padding: 80px 20px;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background: #f9f6f3;
    padding: 20px;
    border-left: 4px solid #8b7355;
}

.selected-service-display p {
    margin: 5px 0;
    font-size: 16px;
}

.submit-btn-editorial {
    background: #2c2c2c;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn-editorial:hover {
    background: #8b7355;
}

.disclaimer-box {
    background: #fff8f0;
    padding: 30px;
    margin: 50px 0;
    border: 1px solid #e8d8c8;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-box p {
    margin: 0;
    font-size: 14px;
}

.final-cta-editorial {
    background: #2c2c2c;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.final-cta-editorial h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-editorial p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-link-editorial {
    display: inline-block;
    background: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
}

.cta-link-editorial:hover {
    background: #a58968;
}

.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    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: 14px;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #a58968;
}

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

.cookie-reject:hover {
    background: #5a5a5a;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 28px;
    }

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

    .service-content-editorial {
        padding: 30px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

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

.page-header {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

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

.page-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info {
    background: #f9f6f3;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #8b7355;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

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

.service-item {
    background: #fafafa;
    padding: 35px;
    border-left: 3px solid #c9b8a8;
}

.service-item h3 {
    margin-top: 0;
    color: #2c2c2c;
}

.service-item p {
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #8b7355;
    margin-top: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    background-color: #e8dfd7;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 60px 30px;
}

.thanks-box h1 {
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-cta {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.3s;
}

.thanks-cta:hover {
    background: #8b7355;
}