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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.hero-editorial {
    margin-bottom: 50px;
}

.hero-editorial h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.intro-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.content-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.text-block {
    margin: 45px 0;
}

.text-block h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

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

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-inline:hover {
    background-color: #1a1a1a;
}

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

.program-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    border-radius: 6px;
}

.program-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.program-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.duration {
    font-size: 14px;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-program {
    width: 100%;
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: 1px solid #d0d0d0;
    color: #2c2c2c;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-program:hover {
    background-color: #2d2d2d;
    color: #fff;
    border-color: #2d2d2d;
}

.select-program.selected {
    background-color: #2d2d2d;
    color: #fff;
    border-color: #2d2d2d;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #3a3a3a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: Georgia, serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d2d2d;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #2d2d2d;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 24px;
    background-color: #f9f9f9;
    border-left: 3px solid #d0d0d0;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #d0d0d0;
    padding: 24px 30px;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    color: #3a3a3a;
    flex: 1;
    min-width: 300px;
}

.cookie-content p a {
    color: #2d2d2d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-btn.accept {
    background-color: #2d2d2d;
    color: #fff;
    border-color: #2d2d2d;
}

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

.cookie-btn.reject {
    background-color: #fff;
    color: #2d2d2d;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 36px;
    border-radius: 6px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-info {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 6px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-info .email {
    color: #2d2d2d;
    font-weight: 500;
}

.thanks-container {
    max-width: 680px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-container .service-name {
    font-weight: 600;
    color: #2d2d2d;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-container a:hover {
    background-color: #1a1a1a;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

    .editorial-content {
        padding: 40px 20px;
    }

    .hero-editorial h1 {
        font-size: 30px;
    }

    .intro-lead {
        font-size: 18px;
    }

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

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