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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-article {
    margin-bottom: 4rem;
}

.hero-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8f4f8;
    margin-bottom: 2rem;
}

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

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

.lead-text {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.6;
}

.content-narrow {
    margin-bottom: 3rem;
}

.content-narrow h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.inline-image-wrapper {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f4f7;
}

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

.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    font-size: 0.95rem;
}

.price-tag {
    padding: 0.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #ecf8f3;
    border-radius: 8px;
}

.cta-inline h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-inline p {
    margin-bottom: 2rem;
    color: #546e7a;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f4f7;
}

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

.service-detail-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.price-display {
    font-size: 2rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.service-includes {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.cta-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #546e7a;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

.contact-email {
    font-weight: 500;
    color: #2c3e50;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-block p {
    margin-bottom: 0.8rem;
}

.thanks-container {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #ecf8f3;
    border-radius: 6px;
}

.thanks-details p {
    margin-bottom: 1rem;
    color: #546e7a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

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

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .editorial-layout {
        padding: 2rem 1.5rem;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}