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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

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

.nav a {
    color: #34495e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav a:hover {
    color: #3498db;
}

.hero-editorial {
    margin-top: 0;
}

.hero-image {
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.92);
    padding: 50px 40px;
    max-width: 680px;
    text-align: center;
    border-radius: 2px;
}

.hero-text-narrow h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a252f;
}

.hero-text-narrow p {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.5;
}

.editorial-content {
    background-color: #ffffff;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.intro-section {
    margin-bottom: 50px;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #455a64;
}

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

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.image-caption {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

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

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

.story-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #455a64;
}

.insight-box {
    background-color: #f8f9fa;
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    font-size: 17px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #455a64;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.benefits-section h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.benefits-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #455a64;
}

.benefit-card {
    background-color: #fafbfc;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 2px;
    border-left: 3px solid #95a5a6;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    color: #546e7a;
}

.trust-section {
    margin: 60px 0;
}

.trust-section h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-section > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #455a64;
}

.testimonial {
    background-color: #f0f4f8;
    padding: 30px;
    margin: 25px 0;
    border-left: 5px solid #34495e;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.services-preview h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-preview > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #455a64;
}

.service-inline {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.service-inline h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-inline p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

.inline-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.inline-cta:hover {
    background-color: #2980b9;
}

.form-section {
    margin: 70px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 2px;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 18px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fef9e7;
    border: 1px solid #f4d03f;
    border-radius: 2px;
}

.disclaimer {
    font-size: 14px;
    color: #7d6608;
    line-height: 1.6;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 40px;
}

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

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

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

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5f7f;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-text-narrow h1 {
        font-size: 28px;
    }

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

    .content-narrow {
        padding: 40px 20px;
    }

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

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