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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fbbf24;
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 60px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #2d3748;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.cards-grid {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cards-grid h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-features span {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.card-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.card-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select:hover {
    background-color: var(--primary-dark);
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.benefits-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.benefits-image {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.enrollment-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    color: var(--text-light);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group span {
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.testimonials-inline {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-inline h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #78350f;
    text-align: center;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.mission-card {
    background-color: var(--primary-color);
    color: white;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.mission-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-card {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.approach-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-about,
.cta-contact {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about h2,
.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.cta-about p,
.cta-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-price-tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-price-tag.featured-price {
    background-color: var(--primary-color);
    color: white;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--secondary-color);
}

.service-program {
    list-style: none;
    margin-bottom: 32px;
}

.service-program li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.service-program li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-meta span {
    font-size: 15px;
    color: var(--text-color);
}

.service-detail-image {
    flex: 0 0 400px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.services-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-color);
}

.contact-content {
    padding: 80px 0;
}

.contact-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.contact-info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.faq-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
}

.thanks-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.thanks-note {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-note p {
    font-size: 14px;
    color: #78350f;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-content {
        padding: 40px 24px;
    }

    .cards-wrapper {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .benefits-section .container {
        flex-direction: column;
    }

    .benefits-image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
    }

    .about-intro,
    .service-detail-card {
        flex-direction: column;
    }

    .about-image,
    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .contact-cards {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}