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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #FFFFFF;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.main-nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2D5BA6;
}

.nav-ad-notice {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 4px 12px;
    background-color: #F5F5F5;
    border-radius: 3px;
}

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

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-content {
    background-color: #FFFFFF;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #E0E0E0;
}

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

.hero-text-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));
    color: #FFFFFF;
    padding: 60px 20px 40px;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 1.2;
    font-weight: normal;
}

.hero-subtitle {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 20px;
    font-style: italic;
}

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

.page-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #2D5BA6;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: normal;
    color: #2D5BA6;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    font-weight: normal;
    color: #1A1A1A;
}

.inline-image-section {
    margin: 50px 0;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #E0E0E0;
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

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

.cta-link {
    display: inline-block;
    color: #2D5BA6;
    text-decoration: none;
    font-size: 20px;
    padding: 15px 30px;
    border: 2px solid #2D5BA6;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-link:hover {
    background-color: #2D5BA6;
    color: #FFFFFF;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #F5F5F5;
    border-left: 4px solid #2D5BA6;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

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

.service-card {
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.service-card h3 {
    margin-top: 0;
    color: #2D5BA6;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2D5BA6;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 30px;
    background-color: #2D5BA6;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #EBF2FA;
    border-radius: 4px;
}

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

.final-cta {
    margin: 60px 0;
    padding: 40px;
    background-color: #2D5BA6;
    color: #FFFFFF;
    text-align: center;
    border-radius: 4px;
}

.final-cta h3 {
    color: #FFFFFF;
    margin-top: 0;
}

.final-cta p {
    color: #FFFFFF;
}

.btn-primary-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #F4A460;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding: 20px;
    background-color: #F9F9F9;
    border-left: 3px solid #666;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.form-section.hidden {
    display: none;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #1A1A1A;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input[readonly] {
    background-color: #E8E8E8;
}

.btn-primary {
    padding: 15px 40px;
    background-color: #2D5BA6;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: #FFFFFF;
    color: #2D5BA6;
    border: 2px solid #2D5BA6;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2D5BA6;
    color: #FFFFFF;
}

.content-list {
    margin: 20px 0 20px 30px;
}

.content-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #E0E0E0;
}

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

.service-detailed-content h2 {
    margin-top: 0;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}

.service-duration {
    font-size: 16px;
    color: #666;
}

.service-price-large {
    font-size: 32px;
    font-weight: bold;
    color: #2D5BA6;
}

.services-faq {
    margin: 80px 0 40px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.contact-info-card {
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

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

.contact-info-card .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-directions,
.contact-consultation,
.contact-privacy,
.contact-expectations {
    margin: 40px 0;
}

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

.thanks-icon {
    font-size: 80px;
    color: #2D5BA6;
    margin-bottom: 30px;
}

.thanks-page h1 {
    color: #2D5BA6;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
}

.thanks-details,
.thanks-next-steps,
.thanks-contact {
    margin: 50px 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
}

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

.legal-content li {
    margin-bottom: 10px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #D0D0D0;
}

.legal-content th {
    background-color: #F5F5F5;
    font-weight: bold;
}

.main-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #F4A460;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-column a:hover {
    color: #F4A460;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

    .intro-text {
        font-size: 20px;
    }

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

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

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

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

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