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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5aa0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

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

.hero-editorial {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

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

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

.content-section {
    margin-bottom: 55px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #333;
}

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

.inline-image-right {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 3px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.with-background {
    background-color: #f9fafb;
    padding: 45px 35px;
    margin-left: -35px;
    margin-right: -35px;
    border-radius: 4px;
}

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

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

.text-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.text-link:hover {
    border-bottom-color: #2c5aa0;
}

.services-embedded {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

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

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c5aa0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-select-btn {
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta-section {
    margin-top: 70px;
}

.cta-box {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5aa0;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    max-width: 550px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 25px;
    font-size: 28px;
}

.selected-service-display {
    background-color: #f0f4f8;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
}

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

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

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

.footer-section p {
    margin-bottom: 10px;
    font-size: 15px;
}

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

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

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

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

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

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

.page-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-content {
    font-size: 17px;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content ul li {
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    border-radius: 4px;
}

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

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

.service-card .service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c5aa0;
    margin-top: 20px;
}

.contact-info {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 17px;
}

.contact-info strong {
    color: #1a1a1a;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9fafb;
    border-radius: 6px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #28a745;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #234785;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .article-body {
        padding: 40px 20px;
    }

    .with-background {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }
}