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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.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: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 40px;
}

.hero-image-container {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-text-overlay {
    margin-top: 30px;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-style: italic;
}

.intro-section,
.story-section,
.problem-section,
.insight-section,
.benefits-section,
.services-preview,
.form-section,
.disclaimer-section,
.references-section {
    margin: 60px 0;
}

.text-block {
    margin: 30px 0;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
    font-style: italic;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #2c3e50;
}

.text-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #2c3e50;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #2980b9;
}

.section-image-left,
.section-image-right {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

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

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

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

.problem-list {
    list-style: none;
    margin: 25px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
}

.testimonial-inline {
    margin: 50px 0;
}

.testimonial-block {
    background-color: #ecf0f1;
    padding: 35px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
}

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    color: #7f8c8d;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

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

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

.service-image {
    width: 100%;
    background-color: #ecf0f1;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    margin: 0 20px 15px;
    color: #7f8c8d;
}

.service-card .price {
    font-size: 20px;
    font-weight: bold;
    color: #27ae60;
    margin: 15px 20px;
}

.btn-select {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select.selected {
    background-color: #27ae60;
}

.editorial-form {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-top: 30px;
}

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

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

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 15px;
}

.form-note a {
    color: #3498db;
}

.disclaimer-section {
    margin: 60px 0;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 16px;
    color: #856404;
    line-height: 1.6;
}

.references-section {
    margin: 60px 0;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

.references-list {
    margin-top: 20px;
    padding-left: 20px;
}

.references-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #7f8c8d;
}

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

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

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

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

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

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.thanks-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.thanks-container .service-selected {
    font-size: 20px;
    color: #3498db;
    font-weight: bold;
    margin: 25px 0;
}

.thanks-container .btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-back:hover {
    background-color: #2980b9;
}

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

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

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.page-container ul,
.page-container ol {
    margin: 20px 0 20px 30px;
}

.page-container li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-info h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #2c3e50;
}

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

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

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

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

    .editorial-container {
        padding: 40px 15px;
    }

    .text-block h2 {
        font-size: 28px;
    }

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

    .text-block p {
        font-size: 17px;
    }

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

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