* {
    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;
}

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

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

.cookie-content {
    max-width: 1000px;
    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;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: #fff;
    color: #1a1a1a;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

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

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

.editorial-layout {
    max-width: 100%;
}

.story-flow {
    background-color: #fff;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 30px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 30px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 50px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.cta-link {
    display: inline-block;
    background-color: #4a90e2;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.image-break {
    width: 100%;
    margin: 70px 0;
    background-color: #f0f0f0;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.testimonial-inline {
    max-width: 680px;
    margin: 60px auto;
    padding: 40px 50px;
    background-color: #f7f7f7;
    border-left: 5px solid #4a90e2;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.key-points {
    margin: 30px 0;
    padding-left: 30px;
}

.key-points li {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
}

.service-cards-editorial {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #4a90e2;
}

.form-section {
    background-color: #f7f7f7;
    padding: 80px 0;
    margin-top: 80px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff9e6;
    border: 1px solid #f0e5b8;
    border-radius: 4px;
    margin-top: 60px;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 30px 30px;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #357abd;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
}

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

.contact-detail {
    margin-bottom: 40px;
}

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-detail .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

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

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

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

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

.thanks-message {
    text-align: left;
    margin: 40px 0;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link.secondary {
    background-color: #2c2c2c;
}

.cta-link.secondary:hover {
    background-color: #4a4a4a;
}

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

    .subtitle {
        font-size: 18px;
    }

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

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

    .cta-link {
        text-align: center;
    }
}