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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 100;
}

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

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

.brand {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.editorial-content {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 60px;
    background-color: #1a1a2e;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-hero {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    background-color: #2c3e50;
}

.page-hero .hero-image-container {
    width: 100%;
    height: 100%;
}

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

.page-hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.intro-text {
    font-size: 21px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 40px;
    font-weight: 400;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin: 50px 0 20px;
}

.content-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #34495e;
    margin: 35px 0 15px;
}

.content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 22px;
}

.content-narrow ul {
    margin: 20px 0 30px 25px;
}

.content-narrow li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.content-narrow em {
    font-style: italic;
    color: #2c3e50;
}

.content-narrow strong {
    font-weight: 600;
    color: #2c3e50;
}

.inline-image-block {
    margin: 45px 0;
    background-color: #f8f9fa;
}

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

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

.cta-link {
    display: inline-block;
    color: #3498db;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

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

.insight-box {
    background-color: #f0f4f8;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

.insight-box p {
    margin-bottom: 15px;
}

.insight-note {
    font-style: italic;
    color: #5a6c7d;
    margin-top: 20px;
}

.testimonial-inline {
    margin: 45px 0;
    padding: 30px;
    background-color: #fafbfc;
    border-left: 3px solid #95a5a6;
}

.testimonial-inline blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.services-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
}

.service-card h3 {
    margin-top: 0;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 12px;
}

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0 20px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.select-service-btn:active {
    transform: translateY(0);
}

.form-container {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid #dee2e6;
}

.form-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e7f3ff;
    border-left: 3px solid #3498db;
}

.selected-service-display span {
    font-weight: 600;
    color: #2c3e50;
}

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

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.trust-elements {
    background-color: #fafbfc;
    padding: 35px;
    margin: 50px 0;
}

.trust-elements h3 {
    margin-top: 0;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 25px;
    margin: 50px 0;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
    margin: 0;
}

.final-cta {
    text-align: center;
    margin: 70px 0 40px;
    padding: 50px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

.final-cta h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 32px;
}

.final-cta p {
    color: #ecf0f1;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

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

.footer-nav a:hover {
    color: #ffffff;
}

.footer-note {
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #3498db;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.about-principles {
    background-color: #f0f4f8;
    padding: 30px;
    margin: 35px 0;
}

.about-principles h3 {
    margin-top: 0;
}

.about-principles ul {
    margin-left: 0;
    list-style: none;
}

.about-principles li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.about-principles li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e1e8ed;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

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

.service-info h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-description {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    background-color: #f8f9fa;
    padding: 25px 25px 25px 45px;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.contact-info-section {
    margin: 40px 0;
}

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

.contact-detail h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-detail p {
    margin-bottom: 10px;
}

.no-link {
    color: #2c3e50;
    font-weight: 600;
}

.note-text {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-note {
    background-color: #e7f3ff;
    padding: 25px;
    margin: 40px 0;
    border-left: 3px solid #3498db;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message {
    font-size: 19px;
    color: #4a5568;
    margin: 30px 0 40px;
}

.selected-service-confirm {
    font-size: 17px;
    padding: 20px;
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    margin: 30px 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
    background-color: #f8f9fa;
    padding: 30px;
}

.thanks-next-steps h2 {
    margin-top: 0;
    font-size: 24px;
}

.thanks-next-steps ul {
    margin-left: 20px;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.legal-content {
    max-width: 800px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e8ed;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
}

.legal-table {
    margin: 25px 0;
    border: 1px solid #e1e8ed;
}

.legal-row {
    display: flex;
    border-bottom: 1px solid #e1e8ed;
}

.legal-row:last-child {
    border-bottom: none;
}

.legal-row:first-child {
    background-color: #f8f9fa;
}

.legal-cell {
    flex: 1;
    padding: 15px;
    font-size: 15px;
}

.legal-cell:first-child {
    border-right: 1px solid #e1e8ed;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
    color: #7f8c8d;
    font-size: 14px;
    font-style: italic;
}

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

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

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

    .content-narrow {
        padding: 40px 20px 60px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .legal-row {
        flex-direction: column;
    }

    .legal-cell:first-child {
        border-right: none;
        border-bottom: 1px solid #e1e8ed;
    }

    .services-cards-editorial {
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .form-container {
        padding: 25px 20px;
    }
}