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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.hero-image-bg {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-text-narrow {
    max-width: 680px;
    text-align: center;
    color: #ffffff;
}

.hero-text-narrow h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
}

.editorial-content {
    padding: 60px 0;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.editorial-content h2 {
    font-size: 32px;
    margin: 50px 0 24px 0;
    font-weight: 700;
    color: #2c3e50;
}

.editorial-content h3 {
    font-size: 24px;
    margin: 30px 0 16px 0;
    font-weight: 600;
    color: #34495e;
}

.inline-image-wrapper {
    margin: 40px 0;
}

.inline-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: #ecf0f1;
    border-left: 4px solid #3498db;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.insight-box {
    margin: 50px 0;
    padding: 35px;
    background: #fff3cd;
    border-radius: 8px;
}

.insight-box h3 {
    margin-top: 0;
    color: #856404;
}

.insight-box p {
    margin-bottom: 0;
    color: #856404;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    margin: 24px 24px 12px 24px;
    font-size: 26px;
}

.service-card p {
    margin: 0 24px 16px 24px;
    font-size: 17px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    margin: 50px 0;
}

.testimonials-section blockquote {
    margin: 30px 0;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #95a5a6;
    font-size: 18px;
    line-height: 1.7;
}

.testimonials-section cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background: #ecf0f1;
    border-radius: 8px;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 16px 50px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-box {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.disclaimer-box h3 {
    margin-top: 0;
    font-size: 20px;
    color: #495057;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 15px;
    color: #6c757d;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px 0;
    margin-top: 80px;
}

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

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

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

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

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

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

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

.footer-references {
    margin: 40px 0;
    padding: 30px;
    background: #34495e;
    border-radius: 6px;
}

.footer-references h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #34495e;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
}

.service-confirmation strong {
    color: #155724;
}

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

.page-header {
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-content {
    padding: 60px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    margin-bottom: 16px;
    color: #34495e;
}

.service-item .price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.contact-info-section {
    margin: 40px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item strong {
    min-width: 140px;
    color: #2c3e50;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}
