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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #c67f3d;
    --text-color: #2a2a2a;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #ffffff;
    --success-green: #4caf50;
    --error-red: #d32f2f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--light-gray);
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.ad-disclosure p {
    font-size: 12px;
    color: var(--dark-gray);
    margin: 0;
}

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid var(--light-gray);
    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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--medium-gray);
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    background: rgba(44, 95, 124, 0.85);
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
}

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

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.editorial-content p {
    margin-bottom: 25px;
    font-size: 17px;
}

.editorial-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.inline-image-section {
    margin: 50px 0;
    background-color: var(--light-gray);
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--dark-gray);
    font-style: italic;
    text-align: center;
}

.cta-inline {
    background-color: var(--light-gray);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.cta-inline p {
    margin-bottom: 20px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

blockquote {
    margin: 40px 0;
    padding: 30px 30px 30px 50px;
    background-color: var(--light-gray);
    border-left: 5px solid var(--accent-color);
    font-size: 19px;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: var(--dark-gray);
}

.benefits-list {
    margin: 30px 0;
    padding-left: 25px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 35px;
    margin: 40px 0;
    border-radius: 6px;
}

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

.testimonial-card cite {
    font-size: 15px;
    color: var(--dark-gray);
    font-style: normal;
}

.services-editorial {
    background-color: var(--light-gray);
    padding: 60px 20px;
}

.service-card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--medium-gray);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 25px;
}

.service-card .btn-select-service,
.service-card .btn-primary {
    margin: 0 25px 25px;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: calc(100% - 50px);
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
    margin: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--light-gray);
    cursor: not-allowed;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 30px;
    margin: 60px 0;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-section h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.references-section {
    background-color: var(--light-gray);
    padding: 40px 30px;
    margin: 60px 0;
}

.references-section h3 {
    margin-top: 0;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1e3a4f;
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 58, 79, 0.98);
    color: var(--white);
    padding: 20px;
    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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background-color: var(--success-green);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding-top: 80px;
    padding-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 6px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(74, 139, 168, 0.1);
    border-radius: 4px;
}

.contact-map-placeholder {
    background-color: var(--medium-gray);
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.process-list {
    padding-left: 25px;
}

.process-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.thank-you-section {
    text-align: center;
    padding: 80px 20px;
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta p {
    margin-bottom: 25px;
    font-size: 18px;
}

.thanks-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 6px;
}

.thanks-image {
    margin-top: 50px;
    background-color: var(--light-gray);
}

.thanks-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
}

.legal-page {
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-list {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

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

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

    .nav-links {
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .thanks-links {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
}