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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.editorial-container.narrow-content {
    max-width: 640px;
}

.story-header {
    margin-bottom: 48px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a202c;
}

.story-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.inline-visual {
    margin: 48px 0;
    width: 100%;
}

.inline-visual.narrow {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.story-section {
    margin-bottom: 40px;
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a202c;
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
    color: #2d3748;
}

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

.quote-block {
    margin: 48px 0;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
}

.quote-block blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 12px;
}

.quote-block cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
}

.services-inline {
    margin: 64px 0;
    padding: 48px 32px;
    background-color: #fafbfc;
    border-radius: 8px;
}

.services-inline h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-inline > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a5568;
}

.service-cards-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-card .price {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #2c5282;
    background-color: #ebf8ff;
    padding: 8px 16px;
    border-radius: 4px;
}

.form-section {
    margin: 64px 0;
    padding: 48px 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.form-section h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a202c;
}

.form-section > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
}

.editorial-form {
    max-width: 540px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 48px 0;
    padding: 24px;
    background-color: #fffaf0;
    border-left: 3px solid #ed8936;
    border-radius: 4px;
}

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

.site-footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 48px 5%;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.footer-note {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 13px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

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

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

.cta-inline {
    margin: 40px 0;
    padding: 28px;
    background-color: #edf2f7;
    border-radius: 6px;
}

.cta-inline p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.text-link {
    color: #2c5282;
    text-decoration: underline;
    transition: color 0.3s;
}

.text-link:hover {
    color: #2a4365;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 48px 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.service-header h3 {
    font-size: 24px;
    margin: 0;
    color: #1a202c;
}

.price-tag {
    font-size: 20px;
    font-weight: 600;
    color: #2c5282;
}

.service-image {
    margin: 0;
}

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

.service-description {
    padding: 28px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.contact-info {
    margin: 32px 0;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a202c;
}

.contact-info h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

.contact-info h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 16px;
}

.contact-info a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-content {
    margin: 32px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2d3748;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    margin-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.thanks-message {
    text-align: center;
    padding: 60px 24px;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    max-width: 600px;
    margin: 0 auto 40px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.button-link {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    background-color: #2c5282;
    color: #ffffff;
}

.button-link:hover {
    background-color: #2a4365;
}

.button-link.secondary {
    background-color: #4a5568;
}

.button-link.secondary:hover {
    background-color: #2d3748;
}

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

    .nav-links {
        gap: 20px;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .story-intro {
        font-size: 18px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .button-link {
        width: 100%;
        text-align: center;
    }
}
