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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a7bc8;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-color: #ffffff;
    --bg-accent: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

.main-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: "Arial", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: "Arial", sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 10px;
    background-color: var(--bg-accent);
    border-radius: 4px;
}

.editorial-layout {
    background-color: var(--bg-color);
}

.content-wrapper {
    max-width: 100%;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-accent);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 60px 20px 40px;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: normal;
}

.intro-section {
    padding: 60px 0;
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: normal;
}

.intro-section p {
    margin-bottom: 25px;
}

.insight-section {
    padding: 60px 0;
    background-color: var(--bg-accent);
}

.insight-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: normal;
}

.insight-section p {
    margin-bottom: 25px;
}

.inline-image-left,
.inline-image-right {
    margin: 40px 0;
    background-color: var(--bg-accent);
}

.inline-image-left img,
.inline-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.inline-image-left {
    float: left;
    width: 100%;
    margin-right: 0;
}

.inline-image-right {
    float: right;
    width: 100%;
    margin-left: 0;
}

@media (min-width: 768px) {
    .inline-image-left {
        width: 400px;
        margin-right: 30px;
    }

    .inline-image-right {
        width: 400px;
        margin-left: 30px;
    }
}

.trust-section {
    padding: 60px 0;
}

.trust-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: normal;
}

.trust-section p {
    margin-bottom: 25px;
}

.testimonials-inline {
    padding: 60px 0;
    background-color: var(--bg-accent);
}

.testimonial-card {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-color);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    color: var(--text-light);
}

.benefits-section {
    padding: 60px 0;
}

.benefits-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: normal;
}

.benefits-section p {
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.services-reveal {
    padding: 80px 0;
    background-color: var(--bg-accent);
}

.services-reveal h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: normal;
}

.service-cards-editorial {
    margin-top: 50px;
}

.service-card {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-card p {
    margin-bottom: 15px;
}

.service-price {
    font-family: "Arial", sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 20px 0;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 80px 0;
}

.form-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: normal;
}

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

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

.form-group label {
    display: block;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: "Georgia", serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: "Arial", sans-serif;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.final-cta-section {
    padding: 80px 0;
    background-color: var(--bg-accent);
}

.final-cta-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: normal;
}

.final-cta-section p {
    margin-bottom: 30px;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fff8e1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: "Arial", sans-serif;
}

.main-footer {
    background-color: var(--text-color);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-family: "Arial", sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section p {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-family: "Arial", sans-serif;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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 {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.page-header-section {
    padding: 80px 0 40px;
}

.page-header-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: normal;
}

.about-intro,
.approach-section,
.values-section,
.team-section,
.cta-section {
    padding: 60px 0;
}

.about-intro h2,
.approach-section h2,
.values-section h2,
.team-section h2,
.cta-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-intro p,
.approach-section p,
.values-section p,
.team-section p,
.cta-section p {
    margin-bottom: 25px;
}

.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    margin-bottom: 25px;
    line-height: 1.7;
}

.values-list strong {
    font-family: "Arial", sans-serif;
    color: var(--primary-color);
}

.services-detail-section {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-card h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: normal;
}

.service-detail-card p {
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-detail-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-price-large {
    font-family: "Arial", sans-serif;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 25px 0;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-block p {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.contact-note {
    padding: 30px;
    background-color: var(--bg-accent);
}

.contact-note p {
    margin: 0;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-message {
    margin-top: 40px;
}

.thanks-message p {
    margin-bottom: 25px;
}

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

.legal-section {
    padding: 60px 0;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: normal;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-section p {
    margin-bottom: 20px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-section ul li {
    margin-bottom: 12px;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: "Arial", sans-serif;
    font-size: 14px;
}

.gdpr-table th,
.gdpr-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.gdpr-table th {
    background-color: var(--bg-accent);
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-editorial {
        height: 400px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 20px;
    }

    .main-nav ul {
        gap: 15px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header-section h1 {
        font-size: 36px;
    }

    .thanks-section h1 {
        font-size: 32px;
    }

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