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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #e74c3c;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-border: #e0e0e0;
    --font-body: 'Georgia', serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
}

.ad-notice {
    background-color: #fffbea;
    color: #8b7500;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-family: var(--font-heading);
    border-bottom: 1px solid #f0e5a8;
}

.nav-minimal {
    padding: 20px 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.hero-editorial {
    background-color: var(--color-bg-light);
    padding: 80px 30px 40px;
}

.hero-narrow {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-narrow h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.hero-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-light);
}

.story-intro {
    padding: 80px 30px;
    background-color: var(--color-bg);
}

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

.narrow-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

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

.featured-story {
    padding: 60px 30px;
    background-color: var(--color-bg-light);
}

.story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text {
    flex: 1;
}

.story-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.story-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image {
    width: 400px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: var(--color-bg);
}

.inline-cta {
    padding: 50px 30px;
    background-color: var(--color-primary);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-box p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    margin-left: 10px;
}

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

.story-continuation {
    padding: 80px 30px;
    background-color: var(--color-bg);
}

.inline-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 35px 0;
    object-fit: cover;
    background-color: var(--color-bg-light);
}

.services-preview {
    padding: 80px 30px;
    background-color: var(--color-bg-light);
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--color-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
}

.price {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-select:hover {
    background-color: var(--color-primary);
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: var(--color-bg);
}

blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid var(--color-accent);
}

cite {
    display: block;
    font-style: normal;
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 15px;
    font-family: var(--font-heading);
}

.form-section {
    padding: 80px 30px;
    background-color: var(--color-bg-light);
}

.contact-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 14px 40px;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid #4caf50;
}

.selected-service-display strong {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.selected-service-display span {
    color: var(--color-text);
}

.footer-editorial {
    background-color: var(--color-secondary);
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    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 {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-cookie-accept {
    background-color: #4caf50;
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #45a049;
}

.btn-cookie-reject {
    background-color: #666666;
    color: white;
}

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

.page-content {
    padding: 60px 30px;
}

.page-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
    object-fit: cover;
    background-color: var(--color-bg-light);
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    margin-top: 0;
}

.service-image {
    width: 400px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: var(--color-bg-light);
}

.contact-info {
    margin-top: 40px;
}

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

.contact-item strong {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
}

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

.legal-page li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-page .thanks-content {
    text-align: center;
}

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

.service-confirmation strong {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-narrow h1 {
        font-size: 32px;
    }

    .story-grid {
        flex-direction: column;
        gap: 30px;
    }

    .story-image {
        width: 100%;
    }

    .service-detailed {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-image {
        width: 100%;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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