* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-label {
    background-color: #f8f9fa;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.hero-immersive {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-content-narrow h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.story-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.story-image-inline {
    margin: 60px 0;
    background-color: #e9ecef;
}

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

.insight-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.social-proof-inline {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.testimonial-embed {
    background-color: #ffffff;
    padding: 30px 40px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-embed p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 14px;
}

.testimonial-embed cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-large {
    flex: 2 1 500px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.benefit-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 24px;
}

.benefit-large h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-large p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.benefit-small {
    flex: 1 1 250px;
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-small h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-small p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
}

.offer-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    padding-left: 20px;
}

.offer-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.offer-card {
    flex: 1 1 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.offer-image {
    background-color: #e9ecef;
    height: 220px;
    overflow: hidden;
}

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

.offer-card h3 {
    font-size: 1.5rem;
    margin: 20px 24px 12px;
    color: #2c3e50;
}

.offer-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #495057;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 24px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #495057;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    color: #6c757d;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.footer-extended {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

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

.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 1 400px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #6c7a7b;
}

.page-hero-simple {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.content-section-split {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.split-text {
    flex: 1 1 450px;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.split-image {
    flex: 1 1 450px;
    background-color: #e9ecef;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.team-context {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-context h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-context p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-item-full {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-image-large {
    flex: 1 1 450px;
    background-color: #e9ecef;
}

.service-image-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1 1 450px;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.cta-section-inline {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #495057;
}

.cta-section-inline a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.cta-section-inline a:hover {
    color: #2980b9;
}

.contact-details-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-block {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
}

.additional-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.additional-info a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.additional-info a:hover {
    color: #2980b9;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #495057;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    border: 2px solid #27ae60;
}

.service-info {
    font-size: 1.15rem;
    color: #2c3e50;
    margin: 0;
}

.next-steps {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.thanks-actions a {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-actions .btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-actions .btn-primary:hover {
    background-color: #2980b9;
}

.thanks-actions .btn-secondary {
    background-color: #7f8c8d;
    color: #ffffff;
}

.thanks-actions .btn-secondary:hover {
    background-color: #6c7a7b;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-date {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #495057;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #2980b9;
}

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

    .lead-text {
        font-size: 1.1rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .section-title-centered,
    .section-title-offset {
        font-size: 2rem;
    }

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

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

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

    .service-item-full {
        flex-direction: column;
    }
}