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

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6f;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #0d3a6f;
}

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 2px solid #ffffff;
}

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

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

.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: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.logo:hover {
    color: #1a5490;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links a {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

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

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

.hero-lead {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.text-flow {
    padding: 80px 0;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.drop-cap::first-letter {
    font-size: 72px;
    line-height: 1;
    float: left;
    margin: 0 10px 0 0;
    font-weight: 700;
    color: #1a5490;
}

.text-flow p {
    margin-bottom: 28px;
}

.text-flow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 60px 0 24px 0;
    font-weight: 700;
    color: #1a1a1a;
}

.text-flow h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 40px 0 18px 0;
    font-weight: 600;
    color: #2a2a2a;
}

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

.inline-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

.image-caption {
    margin-top: 12px;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.editorial-quote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid #1a5490;
    background-color: #f9f9f9;
    color: #333;
}

.cta-inline {
    margin: 50px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #0d3a6f;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1a5490;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1a5490;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5490;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.services-editorial {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-intro {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
    text-align: center;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-edit {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 30px;
}

.service-card-edit:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 45%;
}

.service-card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card-text {
    flex: 1;
}

.service-card-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-text p {
    margin-bottom: 16px;
    color: #444;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-service:hover {
    background-color: #0d3a6f;
}

.btn-service-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service-link:hover {
    background-color: #0d3a6f;
    color: #ffffff;
}

.services-cta {
    margin-top: 80px;
    text-align: center;
    padding: 50px 30px;
    background-color: #ffffff;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.form-editorial {
    padding: 80px 0;
    background-color: #ffffff;
}

.selection-info {
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #1a5490;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    display: none;
}

.selection-info.show {
    display: block;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 50px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.footer-main {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.page-header {
    padding: 80px 0 40px 0;
    background-color: #fafafa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info-block {
    background-color: #fafafa;
    padding: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.contact-email {
    font-weight: 600;
    color: #1a5490;
    pointer-events: none;
    user-select: text;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-text-block ul {
    margin: 20px 0 20px 30px;
}

.contact-text-block ul li {
    margin-bottom: 10px;
}

.thanks-section {
    padding: 120px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a5490;
}

.thanks-lead {
    font-size: 24px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-info-box {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 50px 0;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-info-box ul {
    margin: 20px 0 0 30px;
}

.thanks-info-box ul li {
    margin-bottom: 12px;
    font-size: 17px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 50px 0 20px 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }

    .service-card-edit,
    .service-card-edit:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .stats-inline {
        flex-direction: column;
        gap: 30px;
    }
}