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

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

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.editorial-hero {
    margin-bottom: 56px;
}

.hero-image-container {
    margin-bottom: 32px;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 4px;
}

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

.editorial-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 16px;
}

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

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c3e50;
}

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

.inline-image {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 16px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.highlight-section {
    background-color: #f8f9fa;
    padding: 32px;
    border-left: 4px solid #4caf50;
    margin: 48px 0;
}

.cta-inline {
    margin-top: 28px;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1a252f;
}

.testimonial-section {
    margin: 56px 0;
    padding: 32px;
    background-color: #f0f4f8;
    border-radius: 4px;
}

.testimonial-section blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #37474f;
}

.testimonial-section cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #607d8b;
}

.form-section {
    margin: 56px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

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

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

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

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

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

.submit-btn {
    padding: 16px 32px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 48px;
}

.editorial-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 24px 32px;
    margin-top: 64px;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

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

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

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

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

.footer-note {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.cookie-btn.accept:hover {
    background-color: #43a047;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #546e7a;
}

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

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

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #4caf50;
    margin: 16px 0;
}

.service-details {
    list-style: none;
    margin: 20px 0;
}

.service-details li {
    font-size: 15px;
    padding: 8px 0;
    color: #546e7a;
    border-bottom: 1px solid #f0f0f0;
}

.service-details li:last-child {
    border-bottom: none;
}

.contact-info {
    background-color: #fff;
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 12px;
}

.thanks-message {
    text-align: center;
    padding: 64px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 400;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin: 32px 0 16px;
    font-weight: 500;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    font-weight: 500;
    color: #37474f;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

    .editorial-title {
        font-size: 32px;
    }

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

    .story-section h2 {
        font-size: 26px;
    }

    .story-section p {
        font-size: 16px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }

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