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

:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1a3d6d;
    --accent-color: #e67e22;
    --accent-light: #f39c12;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #2ecc71;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: #f1f3f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
}

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

.hero-text-card {
    flex: 1;
    color: white;
}

.hero-text-card h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-card p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

.hero-image-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.courses-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.course-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    width: calc(33.333% - 22px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.course-card img {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

.course-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.duration {
    color: var(--text-light);
    font-size: 14px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.select-course {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.enrollment-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.enrollment-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.enrollment-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.enrollment-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.form-row {
    display: flex;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
}

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

.testimonial-cards {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.final-cta-card {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.site-footer {
    background-color: #1a1a2e;
    color: white;
    padding: 60px 0 0 0;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #b8b8c7;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #b8b8c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b8b8c7;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding: 24px 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.98);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #27ae60;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: white;
    text-decoration: underline;
}

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

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

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

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

.content-card-layout {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 36px;
    margin: 40px 0 24px 0;
    color: var(--primary-color);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.highlight-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--accent-color);
}

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

.difference-cards {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.diff-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-card);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.diff-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.diff-card p {
    color: var(--text-light);
    font-size: 15px;
}

.content-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.stat-list {
    list-style: none;
}

.stat-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.stat-list li:last-child {
    border-bottom: none;
}

.sidebar-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    background-color: var(--primary-dark);
}

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

.service-detail-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 32px;
}

.service-title-section {
    flex: 1;
}

.service-title-section h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-tagline {
    color: var(--text-light);
    font-size: 16px;
}

.service-price-box {
    background-color: var(--bg-light);
    padding: 20px 32px;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-description {
    flex: 1;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-description h4 {
    font-size: 20px;
    margin: 32px 0 16px 0;
    color: var(--primary-color);
}

.service-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-description ul li {
    padding: 10px 0 10px 28px;
    color: var(--text-light);
    position: relative;
}

.service-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-meta {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

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

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.service-image img {
    width: 100%;
    height: auto;
}

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

.enrollment-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-additional {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-card,
.location-note-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-card h3,
.location-note-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.location-note-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

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

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

.confirmation-details {
    text-align: left;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    margin-bottom: 36px;
}

.confirmation-details h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

.btn-outline {
    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.3s ease;
}

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

.support-note {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.support-note p {
    color: var(--text-light);
    font-size: 14px;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-card);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 24px 0;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 32px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

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

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .course-card {
        width: calc(50% - 16px);
    }

    .content-card-layout {
        flex-direction: column;
    }

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

    .service-body {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .container {
        padding: 0 24px;
    }

    .hero-text-card h1 {
        font-size: 36px;
    }

    .course-card {
        width: 100%;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .service-header {
        flex-direction: column;
    }

    .service-meta {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-text-card h1 {
        font-size: 28px;
    }

    .enrollment-card {
        padding: 32px 24px;
    }

    .thanks-card {
        padding: 36px 24px;
    }
}