* {
    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: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 250px;
}

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

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

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: #666;
    color: white;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #ffeaa7;
}

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

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

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

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 400;
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-text {
    margin-bottom: 40px;
}

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

.narrow-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.narrow-text h2 {
    font-size: 32px;
    margin: 50px 0 25px 0;
    font-weight: 400;
    line-height: 1.3;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

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

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

.link-cta {
    color: #2c5aa0;
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s;
}

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

.insight-section {
    margin: 80px 0;
}

.services-reveal {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    color: #2c5aa0;
    font-weight: bold;
    margin: 20px 0;
}

.btn-select {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1a3a70;
}

.testimonial-section {
    margin: 80px 0;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #2c5aa0;
}

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

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

.form-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f0f4f8;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.editorial-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.selected-service {
    background-color: #e8f4f8;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #2c5aa0;
    display: none;
}

.selected-service.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

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

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

.btn-submit {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a3a70;
}

.final-cta {
    margin: 80px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a3a70;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2a2a2a;
    border-left: 3px solid #ffd700;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

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

    .lead-paragraph {
        font-size: 19px;
    }

    .narrow-text p {
        font-size: 16px;
    }

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

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

    .service-card img {
        height: 200px;
    }

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