* {
    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;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

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

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-editorial {
    background-color: #ffffff;
    padding: 80px 24px 60px;
    border-bottom: 1px solid #e0e0e0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-lead {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
}

.editorial-flow {
    background-color: #ffffff;
    padding: 60px 24px;
}

.editorial-column {
    max-width: 680px;
    margin: 0 auto;
}

.opening-text {
    font-size: 21px;
    line-height: 1.65;
    margin-bottom: 48px;
    color: #3a3a3a;
}

.editorial-column h2 {
    font-size: 32px;
    margin: 56px 0 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-column p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-editorial {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.service-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f0f0;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2a2a2a;
    font-weight: 600;
}

.service-block p {
    font-size: 17px;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 12px;
}

.contact-form-section {
    margin: 64px 0;
    padding: 48px 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-form-section h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 32px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-block {
    margin: 56px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #2a2a2a;
}

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
}

.main-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 60px 24px 32px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
}

.disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: #909090;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

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

.thanks-content p {
    font-size: 19px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

    .opening-text {
        font-size: 19px;
    }

    .editorial-column h2 {
        font-size: 28px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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