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

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

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

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

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

.hero-story {
    margin-bottom: 60px;
}

.hero-story img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}

.hero-story.small {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
}

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

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

.story-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    color: #2c2c2c;
}

.story-section h4 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
    color: #333;
}

.story-section p {
    margin-bottom: 18px;
    font-size: 18px;
    text-align: justify;
}

.story-section ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.story-section li {
    margin-bottom: 10px;
    font-size: 18px;
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 12px;
}

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

.phase-block {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.phase-block h4 {
    margin-top: 0;
}

.cta-inline {
    background-color: #e8f4ff;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
    border-radius: 3px;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-inline p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #444;
}

.testimonial-inline {
    background-color: #f5f5f5;
    padding: 30px 35px;
    margin: 45px 0;
    border-left: 5px solid #333;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
    color: #2c2c2c;
}

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

.service-preview {
    margin: 60px 0;
}

.service-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.service-preview > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 35px;
}

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

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

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    text-align: left;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
    margin-top: 15px;
    font-family: Arial, sans-serif;
}

.btn-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #0066cc;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 2px solid #0066cc;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

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

.contact-form {
    background-color: #f9f9f9;
    padding: 35px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
    font-family: Georgia, 'Times New Roman', serif;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px 30px;
}

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

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

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

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

.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: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.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.5;
    font-family: Arial, sans-serif;
}

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

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

.btn-accept {
    background-color: #0066cc;
    color: #fff;
}

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

.btn-reject {
    background-color: #555;
    color: #fff;
}

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

.service-detail {
    margin-bottom: 55px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.price-tag {
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
    font-family: Arial, sans-serif;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-description p {
    font-size: 17px;
    margin-bottom: 15px;
}

.service-description ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.service-description li {
    margin-bottom: 10px;
    font-size: 17px;
}

.contact-info-section {
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.email-display {
    color: #0066cc;
    font-family: monospace;
    font-size: 16px;
}

.thanks-container {
    text-align: center;
    padding: 40px 0;
}

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background-color: #e8f4ff;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 3px;
    font-size: 17px;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.step {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    margin-bottom: 0;
    color: #555;
}

.thanks-note {
    background-color: #fffbf0;
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid #ffa500;
    text-align: left;
}

.thanks-note p {
    font-size: 15px;
    margin-bottom: 0;
    color: #666;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 800px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookie-table tr:nth-child(even) {
    background-color: #fafafa;
}

.values-section {
    margin: 50px 0;
}

.value-block {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    color: #1a1a1a;
}

.value-block p {
    font-size: 17px;
    margin-bottom: 0;
    color: #444;
}

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

    .top-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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

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

    .story-section p {
        font-size: 17px;
        text-align: left;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}