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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hero-editorial {
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content-narrow h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    font-style: italic;
}

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

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

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

.inline-image-block {
    margin: 50px 0;
    background-color: #f8f9fa;
    padding: 0;
}

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

.image-caption {
    padding: 20px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.editorial-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.editorial-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.insight-card {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 25px 0;
    border-radius: 8px;
}

.insight-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

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

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

.cta-inline {
    background-color: #3498db;
    color: #ffffff;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    border-radius: 8px;
}

.cta-inline p {
    font-size: 22px;
    margin-bottom: 20px;
}

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

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

.testimonial-inline {
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

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

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

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 25px 25px 10px;
    margin: 0;
    font-size: 24px;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
    color: #555;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 15px 25px;
}

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

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

.service-card.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

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

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

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

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

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

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

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

.disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 30px;
    margin: 50px 0;
    border-radius: 8px;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
}

.disclaimer-section p {
    font-size: 15px;
    color: #856404;
}

.references-section {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.references-section h3 {
    margin-top: 0;
}

.references-list {
    list-style-position: outside;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

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

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

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

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    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;
}

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

.service-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 30px;
    min-width: 300px;
}

.service-item h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 22px;
}

.service-item p {
    margin-bottom: 15px;
    color: #555;
}

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

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

.contact-info h2 {
    margin-top: 0;
}

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

.contact-details p {
    margin: 15px 0;
    font-size: 16px;
}

.contact-details strong {
    display: inline-block;
    min-width: 150px;
    color: #2c3e50;
}

.about-section {
    margin: 40px 0;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #555;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 32px;
    }

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

    .main-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ad-notice {
        margin: 0;
    }

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

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

    .service-item {
        flex: 1 1 100%;
    }

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

    .form-section {
        padding: 30px 20px;
    }
}