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

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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

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

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

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

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

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

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

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

.hero-subtext {
    font-size: 22px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.content-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-image-section {
    margin: 60px 0;
    background-color: #f8f9fa;
    padding: 20px;
}

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

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

.problem-section,
.insight-section,
.trust-section {
    margin-bottom: 50px;
}

h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a5490;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

p {
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.insight-item {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 30px;
    border-radius: 6px;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
}

.service-select-btn {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-group input[readonly] {
    background-color: #e9ecef;
}

.submit-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.trust-point {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #bdc3c7;
    font-size: 14px;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #34495e;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
    margin: 0;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a5490;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

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

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

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    text-align: center;
}

.thanks-page h1 {
    color: #28a745;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 15px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    max-width: 500px;
}

.thanks-info p {
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #144070;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .content-wrapper {
        padding: 0 20px 60px;
    }

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

    h2 {
        font-size: 26px;
    }

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

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