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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d9d9d9;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 600px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.intro-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

.quote-block {
    margin: 50px 0;
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
}

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

.btn-text-link {
    font-size: 18px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #004999;
}

.services-preview-section {
    margin-bottom: 80px;
}

.services-preview-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-preview-section > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card-editorial {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-editorial:hover {
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #d9d9d9;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card-editorial p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #3a3a3a;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 16px 24px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-section > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.closing-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.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 ease;
}

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

.footer-disclaimer {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: #0066cc;
}

.thanks-content .btn-primary {
    margin-top: 30px;
}

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

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .content-narrow {
        padding: 40px 20px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

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

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

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