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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

.main-nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

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

.hero-editorial {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
}

.intro-section,
.about-intro {
    padding: 60px 0;
}

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

.intro-section p,
.about-intro p {
    font-size: 18px;
    margin-bottom: 24px;
    text-align: justify;
}

.intro-section h2,
.about-intro h2,
.services-preview h2,
.services-detailed h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 50px 0 25px;
    line-height: 1.3;
}

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

.editorial-quote {
    border-left: 4px solid #0066cc;
    padding: 20px 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 22px;
    background-color: #f9f9f9;
}

.editorial-quote p {
    margin: 0;
}

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

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #0052a3;
}

.services-preview {
    padding: 60px 0;
    background-color: #fafafa;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.service-card-editorial h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0 15px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    padding: 12px 30px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 60px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

.cookie-reject {
    background-color: #666;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #555;
}

.page-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-lead {
    font-size: 19px;
    color: #555;
}

.services-detailed {
    padding: 40px 0;
}

.service-detail {
    margin-bottom: 60px;
}

.service-detail h2 {
    margin-top: 30px;
}

.service-detail ul {
    margin: 20px 0 20px 30px;
    font-size: 16px;
}

.service-detail ul li {
    margin-bottom: 8px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.contact-info {
    padding: 40px 0;
}

.contact-details {
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.contact-text ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-page {
    padding: 40px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    font-family: 'Arial', sans-serif;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-section a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #0052a3;
}

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #666;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #555;
}

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

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

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

    .intro-section p,
    .about-intro p {
        font-size: 16px;
        text-align: left;
    }

    .intro-section h2,
    .about-intro h2 {
        font-size: 26px;
    }

    .editorial-quote {
        font-size: 18px;
        padding: 15px 20px;
    }

    .services-preview {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

    .thanks-section h1 {
        font-size: 32px;
    }
}