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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-layout {
    max-width: 100%;
}

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

.hero-editorial {
    padding: 80px 20px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image-inline {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    margin: 40px auto;
    display: block;
}

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

.story-section h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 50px 0 20px;
    font-weight: 700;
}

.story-section h3 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
}

.inline-cta {
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    margin: 40px 0;
}

.cta-link {
    font-size: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
}

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

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.process-item {
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.process-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-item p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

.testimonial-inline {
    padding: 60px 0;
}

blockquote {
    padding: 40px;
    background-color: var(--light-bg);
    border-left: 5px solid var(--accent-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin: 40px 0;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.benefits-list li {
    padding: 15px 0;
    font-size: 18px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: var(--primary-color);
}

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

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

.service-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
}

.service-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-push {
    padding: 80px 0;
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.btn-primary-large:hover {
    background-color: #c0392b;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

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

.page-header {
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 0;
}

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

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-detail h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.badge-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.cta-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

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

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

.contact-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.step {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.step h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

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

.legal-page h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 15px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 10px;
}

.legal-page h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 17px;
}

.legal-page em {
    color: #777;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

    .story-section h2 {
        font-size: 28px;
    }

    .story-section h3 {
        font-size: 24px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .cookie-content {
        padding: 0 10px;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    blockquote {
        padding: 25px;
        font-size: 18px;
    }

    .price {
        font-size: 28px;
    }

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