/* Reset and Base Styles */
* {
    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;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Content Narrow */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 32px;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    color: #ffffff;
    padding: 48px;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #e8e8e8;
}

/* Typography */
h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c3e50;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
}

p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.opening-line {
    font-size: 21px;
    line-height: 1.6;
    color: #2a3f5f;
    font-weight: 500;
    margin-bottom: 32px;
}

/* Inline Image Block */
.inline-image-block {
    margin: 48px 0;
    overflow: hidden;
    border-radius: 4px;
}

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

/* Quote Block */
.quote-block {
    border-left: 4px solid #2a3f5f;
    padding-left: 24px;
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #555;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #f8f9fa;
    padding: 32px;
    margin: 48px 0;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

/* CTA Inline */
.cta-inline {
    margin: 40px 0;
    text-align: left;
}

.btn-text-link {
    color: #2a3f5f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #2a3f5f;
    padding-bottom: 2px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-text-link:hover {
    color: #1a2d45;
    border-bottom-color: #1a2d45;
}

/* Services Reveal */
.services-reveal {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e8e8e8;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 32px;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}

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

.service-item h3 {
    margin-top: 0;
    font-size: 24px;
    color: #2a3f5f;
}

.service-item p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2a3f5f;
    margin: 24px 0 20px 0;
}

.service-item-detailed {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

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

.service-item-detailed h2 {
    margin-top: 0;
    color: #2a3f5f;
}

/* Buttons */
.btn-select-service {
    background-color: #2a3f5f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1a2d45;
}

.btn-submit {
    background-color: #2a3f5f;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    margin-top: 24px;
}

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

/* Form Container */
.form-container {
    background-color: #f8f9fa;
    padding: 48px;
    margin-top: 56px;
    border-radius: 6px;
}

.form-container h2 {
    margin-top: 0;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 32px;
    color: #6c757d;
}

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-row input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.form-row input:focus {
    outline: none;
    border-color: #2a3f5f;
}

.service-display {
    font-size: 18px;
    font-weight: 600;
    color: #2a3f5f;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 4px;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 24px 28px;
    margin: 56px 0;
    border-radius: 4px;
}

.disclaimer-block h3 {
    margin-top: 0;
    font-size: 18px;
    color: #856404;
}

.disclaimer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
    margin-bottom: 0;
}

/* References Block */
.references-block {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
}

.references-block h3 {
    margin-top: 0;
    font-size: 20px;
}

.references-list {
    list-style-position: outside;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #2a3f5f;
    text-decoration: underline;
}

.references-list a:hover {
    color: #1a2d45;
}

/* Legal Entity Full */
.legal-entity-full {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-radius: 6px;
}

.legal-entity-full h2 {
    margin-top: 0;
    font-size: 24px;
}

.legal-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 16px;
    flex-direction: column;
}

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

.legal-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin-bottom: 4px;
}

.legal-value {
    color: #2c3e50;
    font-size: 16px;
}

/* Contact Info Block */
.contact-info-block {
    margin: 40px 0;
}

.contact-info-block h2 {
    margin-top: 0;
}

/* Legal Page */
.legal-page ul {
    margin: 16px 0 24px 32px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-message {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 32px;
    margin: 40px 0;
    border-radius: 4px;
}

.thanks-message p {
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    margin: 48px 0;
}

.next-steps ul {
    margin: 24px 0 24px 32px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 17px;
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 48px 32px 32px 32px;
    margin-top: 80px;
}

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

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2a3f5f;
}

.footer-legal {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
}

.footer-legal p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 32px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 32px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #2c3e50;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .nav-links {
        gap: 16px;
    }

    .content-narrow {
        padding: 48px 24px;
    }

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

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .legal-entity-full {
        padding: 24px;
    }
}