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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #357abd;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.story-article {
    background-color: #ffffff;
}

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text-center {
    text-align: center;
    padding: 0 20px;
}

.hero-text-center h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.content-narrow p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
}

.inline-cta {
    text-align: center;
    margin: 48px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #357abd;
}

.inline-image-block {
    margin: 48px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

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

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

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

.services-editorial {
    margin: 48px 0;
}

.service-card-editorial {
    padding: 32px;
    margin-bottom: 32px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-card-editorial p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #d0d0d0;
}

.service-duration {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-select-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-select-btn:hover {
    background-color: #357abd;
}

.editorial-list {
    margin: 32px 0;
    padding-left: 24px;
}

.editorial-list li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
}

.form-section-editorial {
    margin: 64px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.form-section-editorial h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 32px;
}

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

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

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #357abd;
}

.disclaimer-section {
    margin: 56px 0;
    padding: 24px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 48px 20px 24px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.contact-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-page-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info-block {
    margin-bottom: 48px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.legal-page-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page-container ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-container .selected-service-info {
    margin: 32px 0;
    padding: 24px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
}

.thanks-container .selected-service-info p {
    margin: 0;
    font-size: 16px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #357abd;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

    .hero-text-center h1 {
        font-size: 32px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
    }

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