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

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

.ad-disclosure {
    background: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

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

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

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

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #8b9aa3;
}

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

.hero-text-overlay {
    max-width: 720px;
    margin: -120px auto 0;
    position: relative;
    background: #fff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: normal;
}

.lead-text {
    font-size: 19px;
    color: #555;
    line-height: 1.6;
}

.content-section {
    padding: 60px 20px 80px;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.75;
}

.narrow-column h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    font-weight: normal;
    line-height: 1.3;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #e5e5e5;
    object-fit: cover;
}

.inline-cta {
    background: #f7f9fb;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #0066cc;
}

.inline-cta p {
    margin-bottom: 12px;
}

.text-cta {
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 2px solid #0066cc;
    transition: color 0.3s;
}

.text-cta:hover {
    color: #004a99;
}

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

.service-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: box-shadow 0.3s;
    background-color: #f9f9f9;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: normal;
}

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

.price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    margin: 16px 0;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #004a99;
}

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #999;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 12px;
}

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

.editorial-form {
    background: #f7f9fb;
    padding: 40px;
    margin: 40px 0;
    border-radius: 6px;
}

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

.editorial-form input,
.editorial-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

.selected-service-display {
    background: #e8f4f8;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    border: 1px solid #b3d9eb;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
}

.btn-submit {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #004a99;
}

.disclaimer-text {
    margin-top: 40px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 4px;
}

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: normal;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.btn-accept {
    background: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background: #004a99;
}

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

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

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
}

.page-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.page-container h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    font-weight: normal;
}

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

.page-container ul,
.page-container ol {
    margin: 20px 0 20px 40px;
}

.page-container li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-detail {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.service-detail h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-detail p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    margin: 20px 0;
}

.contact-info {
    background: #f7f9fb;
    padding: 40px;
    margin: 40px 0;
    border-radius: 6px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0066cc;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #004a99;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-text-overlay {
        padding: 30px;
        margin-top: -80px;
    }

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

    .narrow-column {
        padding: 0 20px;
    }

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

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