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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #e0e0e0;
    --link-color: #0f3460;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header-editorial {
    padding: 30px 20px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.ad-disclosure {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

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

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

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

.hero-content-narrow {
    text-align: center;
    margin-bottom: 50px;
}

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

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-inline {
    margin: 40px 0;
    background-color: var(--bg-secondary);
}

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

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

.story-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 60px;
    color: var(--primary-color);
}

.story-text h2:first-child {
    margin-top: 0;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 19px;
    line-height: 1.8;
}

.inline-image-small {
    margin: 50px 0;
    background-color: var(--bg-secondary);
}

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

.services-inline {
    max-width: 100%;
    margin: 100px 0;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 0 20px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.service-story-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.service-story-block.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.service-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 25px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-select {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-secondary);
}

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

.trust-narrative {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 20px;
    background-color: var(--bg-secondary);
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.form-section-inline {
    max-width: 700px;
    margin: 100px auto;
    padding: 0 20px;
}

.form-container-narrow h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form-editorial {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: Georgia, serif;
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.disclaimer-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 20px;
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-editorial {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-hero-simple {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-block-full {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-block-full:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.price-display {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-content-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-block-full.reverse .service-content-split {
    flex-direction: row-reverse;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-description h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-description li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-secondary);
}

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

.contact-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-secondary);
}

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

.cta-section-simple {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
    background-color: var(--bg-secondary);
}

.cta-content-center h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-center p {
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.thanks-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.thanks-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.thanks-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-secondary);
}

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

.next-steps {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--link-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--accent-color);
}

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

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

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

    .service-story-block,
    .service-story-block.reverse {
        flex-direction: column;
    }

    .service-text h3 {
        font-size: 26px;
    }

    .price-tag {
        font-size: 24px;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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