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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3182ce;
}

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial {
    margin: 60px 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

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

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

.hero-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    font-style: italic;
}

.content-column {
    padding: 0 50px 80px;
}

.intro-section,
.problem-section,
.insight-section,
.trust-section,
.services-reveal {
    margin-bottom: 70px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #1a202c;
    margin-bottom: 30px;
}

.content-column p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2d3748;
}

.content-column h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a202c;
    font-weight: 600;
}

.content-column h3 {
    font-size: 24px;
    margin: 35px 0 18px;
    color: #2d3748;
    font-weight: 600;
}

.content-column h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #2d3748;
    font-weight: 600;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f7fafc;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    padding: 20px 25px;
    font-size: 15px;
    color: #4a5568;
    font-style: italic;
    background-color: #f7fafc;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #edf2f7;
    border-left: 4px solid #3182ce;
    font-size: 19px;
    font-style: italic;
    color: #2d3748;
}

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

.cta-inline-block {
    background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
    padding: 45px 40px;
    margin: 60px 0;
    border-radius: 4px;
    color: #ffffff;
}

.cta-inline-block h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.cta-inline-block p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.insight-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.insight-card h4 {
    margin-top: 0;
}

.reference-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.reference-link:hover {
    text-decoration: underline;
}

.service-list {
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-content {
    padding: 35px 40px;
}

.service-content h3 {
    margin-top: 0;
    color: #1a365d;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.service-duration {
    font-size: 15px;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5282;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    background-color: #f7fafc;
    padding: 50px 45px;
    margin: 60px 0;
    border-radius: 4px;
}

.inquiry-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px 35px;
    background-color: #fefcbf;
    border-left: 4px solid #d69e2e;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #744210;
    margin: 0;
}

.references-section {
    margin: 50px 0;
    padding: 30px 35px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.references-section h3 {
    margin-top: 0;
}

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

.references-list li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #2d3748;
}

.references-list a {
    color: #3182ce;
    word-break: break-all;
}

.site-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 50px 0;
    border-top: 1px solid #2d3748;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    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 {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #e2e8f0;
}

.cookie-content a {
    color: #90cdf4;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2c5282;
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

.page-header {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 50px;
}

.page-header h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 12px;
}

.header-subtitle {
    font-size: 18px;
    color: #4a5568;
    font-style: italic;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.about-intro,
.philosophy-section,
.approach-section,
.team-section,
.values-section,
.services-intro,
.services-detail,
.contact-intro,
.contact-details,
.response-info,
.privacy-note {
    margin-bottom: 60px;
}

.experience-list {
    list-style-position: outside;
    padding-left: 25px;
    margin: 25px 0;
}

.experience-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #2d3748;
}

.service-detailed {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 40px;
}

.service-detailed h2 {
    margin-top: 0;
    color: #1a365d;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 4px;
}

.duration {
    font-size: 15px;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detailed ul {
    list-style-position: outside;
    padding-left: 25px;
    margin: 20px 0;
}

.service-detailed ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.cta-section {
    background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
    padding: 50px 45px;
    text-align: center;
    border-radius: 4px;
    margin: 60px 0;
}

.cta-section h2 {
    color: #ffffff;
    margin-top: 0;
}

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

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-large:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
}

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

.info-block {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.info-block h3 {
    margin-top: 0;
    color: #1a365d;
}

.info-block p {
    margin-bottom: 10px;
}

.info-block .note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 15px;
}

.thanks-page {
    padding-top: 40px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 30px;
}

.next-steps {
    margin: 50px 0;
}

.step-item {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.step-item h3 {
    margin-top: 0;
    color: #2c5282;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 30px;
    border-left: 4px solid #38b2ac;
    border-radius: 4px;
    margin: 40px 0;
}

.service-confirmation h3 {
    margin-top: 0;
    color: #234e52;
}

.selected-service {
    font-weight: 600;
    color: #234e52;
    font-size: 18px;
}

.additional-info {
    margin: 50px 0;
}

.return-home {
    text-align: center;
    margin: 50px 0;
}

.legal-page .content-column {
    max-width: 900px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a365d;
}

.legal-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2d3748;
}

.legal-section ul {
    list-style-position: outside;
    padding-left: 25px;
    margin: 20px 0;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .content-column {
        padding: 0 25px 60px;
    }

    .page-header {
        padding: 0 25px;
    }

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

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

    .content-column p {
        font-size: 17px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 35px;
        padding: 0 25px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .service-details,
    .service-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}