* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-article {
    background-color: #ffffff;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.article-meta {
    font-size: 1.15rem;
    color: #7f8c8d;
    font-style: italic;
}

.article-image-hero {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ecf0f1;
}

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

.article-content {
    padding: 3rem 0;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a2e;
    line-height: 1.4;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #ecf0f1;
}

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

.article-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
}

.cta-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}

.cta-inline h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c0392b;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.services-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.85rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

.contact-form-wrapper h3 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.selected-service-info {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 2.5rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-detail {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    color: #2c3e50;
    line-height: 1.6;
}

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

.thanks-message ul {
    text-align: left;
    margin: 2rem 0;
    padding-left: 2rem;
}

.thanks-message ul li {
    margin-bottom: 0.75rem;
}

.thanks-message a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.thanks-message a:hover {
    text-decoration: underline;
}

.submission-info-box {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

.submission-info-box h3 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.submission-info-box p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}