:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #64748b;
    --color-accent: #f59e0b;
    --color-success: #10b981;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-border: #e2e8f0;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px 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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

.btn-light:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

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

.nav-list a {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--color-primary);
}

main {
    padding-top: 72px;
}

.hero-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.intro-section {
    padding: 60px 24px;
    background: var(--color-bg-dark);
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    display: block;
}

.why-section {
    padding: 100px 24px;
}

.why-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.why-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-top: 16px;
}

.why-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    flex: 1;
    padding: 40px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
}

.why-card h3 {
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-text-light);
}

.courses-preview {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.course-item-reverse {
    flex-direction: row-reverse;
}

.course-image {
    flex: 0 0 380px;
}

.course-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.course-info {
    flex: 1;
    padding: 40px;
}

.course-age {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.course-info h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.course-info p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.course-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.courses-cta {
    text-align: center;
    margin-top: 60px;
}

.testimonials-section {
    padding: 100px 24px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-detail {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.method-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.method-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.method-visual {
    flex: 0 0 400px;
}

.method-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.method-content {
    flex: 1;
}

.method-content h2 {
    margin-bottom: 40px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-light);
}

.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-container p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.faq-section {
    padding: 100px 24px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-light);
}

.contact-preview {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.contact-preview-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    margin-bottom: 16px;
}

.contact-info-side > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.contact-value {
    font-weight: 500;
    color: var(--color-text);
}

.contact-form-side {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.site-footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 80px 24px 40px;
}

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

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 280px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

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

.footer-column li:not(:has(a)) {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--color-text);
}

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

.page-hero {
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.story-section {
    padding: 100px 24px;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 0 0 400px;
}

.story-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.mission-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-cards {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    flex: 1;
    padding: 48px 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mission-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.mission-card h3 {
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--color-text-light);
}

.team-section {
    padding: 100px 24px;
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-header p {
    color: var(--color-text-light);
    margin-top: 16px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.team-card {
    flex: 0 0 calc(50% - 16px);
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.team-photo {
    flex: 0 0 100px;
}

.team-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.values-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    margin-bottom: 40px;
}

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

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-number {
    flex: 0 0 48px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.value-text h4 {
    margin-bottom: 8px;
}

.value-text p {
    color: var(--color-text-light);
}

.values-image {
    flex: 0 0 400px;
}

.values-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.numbers-section {
    padding: 80px 24px;
    background: var(--color-bg-dark);
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.number-item {
    text-align: center;
}

.number-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.number-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    display: block;
}

.services-intro {
    padding: 60px 24px;
    background: white;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.services-list-section {
    padding: 60px 24px 100px;
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-full-reverse {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 45%;
    position: relative;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.service-full-content {
    flex: 1;
    padding: 50px;
}

.service-age-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.service-full-content h2 {
    margin-bottom: 16px;
}

.service-full-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.detail-value {
    font-weight: 500;
    color: var(--color-text);
}

.service-includes h4 {
    margin-bottom: 12px;
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.service-includes li {
    padding-left: 24px;
    position: relative;
    color: var(--color-text-light);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 32px;
}

.price-main {
    display: flex;
    align-items: baseline;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-light);
}

.special-offers {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.special-header {
    text-align: center;
    margin-bottom: 60px;
}

.special-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.special-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.special-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 14px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.special-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.special-card h3 {
    margin-bottom: 12px;
}

.special-card > p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.special-details {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.special-pricing {
    margin-bottom: 24px;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.special-period {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.comparison-section {
    padding: 100px 24px;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

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

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

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th small {
    display: block;
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.75rem;
}

.comparison-table tbody tr:hover {
    background: var(--color-bg-alt);
}

.trial-section {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.trial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.trial-content {
    flex: 1;
}

.trial-content h2 {
    margin-bottom: 16px;
}

.trial-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.trial-image {
    flex: 0 0 300px;
}

.trial-image img {
    border-radius: var(--radius-lg);
}

.faq-section-services {
    background: var(--color-bg-alt);
}

.contact-main {
    padding: 60px 24px;
}

.contact-main-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-block h2 {
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 24px;
}

.contact-info-icon {
    flex: 0 0 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
}

.contact-info-content h4 {
    margin-bottom: 8px;
}

.contact-info-content p {
    color: var(--color-text-light);
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--color-bg-alt);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(0,0,0,0.7);
}

.map-overlay p {
    color: white;
    font-size: 0.875rem;
}

.visit-section {
    padding: 60px 24px;
    background: var(--color-bg-alt);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    margin-bottom: 32px;
}

.visit-options {
    display: flex;
    gap: 32px;
}

.visit-option {
    flex: 1;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
}

.visit-option h4 {
    margin-bottom: 8px;
    color: var(--color-primary);
}

.visit-option p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.office-hours {
    padding: 60px 24px;
}

.hours-grid {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-card {
    flex: 1;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
}

.hours-card h3 {
    margin-bottom: 8px;
}

.hours-card > p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.hours-row span:first-child {
    color: var(--color-text-light);
}

.hours-row span:last-child {
    font-weight: 600;
}

.thanks-section {
    padding: 100px 24px;
    text-align: center;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--color-success);
    margin-bottom: 32px;
}

.thanks-section h1 {
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.thanks-selected-service {
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.thanks-selected-service:empty {
    display: none;
}

.selected-service-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.selected-service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.thanks-next {
    text-align: left;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.thanks-next h3 {
    margin-bottom: 20px;
}

.thanks-next ol {
    list-style: decimal;
    padding-left: 24px;
}

.thanks-next li {
    margin-bottom: 12px;
    color: var(--color-text-light);
}

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

.thanks-contact {
    padding: 60px 24px;
    background: var(--color-bg-alt);
    text-align: center;
}

.thanks-contact-content {
    max-width: 400px;
    margin: 0 auto;
}

.thanks-contact h2 {
    margin-bottom: 8px;
}

.thanks-contact p {
    color: var(--color-text-light);
}

.thanks-email {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 16px;
}

.legal-hero {
    padding: 100px 24px 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 8px;
}

.legal-hero p {
    color: var(--color-text-light);
}

.legal-content {
    padding: 60px 24px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-article p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-article ul {
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article li {
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.legal-article strong {
    color: var(--color-text);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
    }

    .intro-stats {
        gap: 40px;
    }

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

    .course-item,
    .course-item-reverse {
        flex-direction: column;
    }

    .course-image {
        flex: none;
    }

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

    .method-container {
        flex-direction: column;
    }

    .method-visual {
        flex: none;
        max-width: 100%;
    }

    .contact-preview-container {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        flex: none;
        max-width: 100%;
    }

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

    .team-card {
        flex: 0 0 100%;
    }

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

    .values-image {
        flex: none;
        max-width: 100%;
        order: -1;
    }

    .numbers-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .number-item {
        flex: 0 0 calc(50% - 20px);
    }

    .service-full,
    .service-full-reverse {
        flex-direction: column;
    }

    .service-full-image {
        flex: none;
    }

    .service-full-image img {
        min-height: 300px;
    }

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

    .trial-container {
        flex-direction: column;
        padding: 40px;
    }

    .trial-image {
        flex: none;
        max-width: 100%;
    }

    .visit-options {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list a {
        font-size: 1.25rem;
    }

    .hero-section {
        padding: 60px 24px;
    }

    .intro-stats {
        flex-direction: column;
        gap: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .service-pricing .btn {
        width: 100%;
    }

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

    .sticky-cta {
        display: none;
    }

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

    .thanks-actions .btn {
        width: 100%;
    }
}
