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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    text-decoration: none;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #4a90e2;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #1a1a2e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85), rgba(26, 26, 46, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.intro-card p {
    color: #666;
    font-size: 16px;
}

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

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

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.course-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 25px;
}

.course-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e8f4fd;
    color: #4a90e2;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.course-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
}

.course-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-select {
    padding: 12px 25px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #4a90e2;
    font-size: 14px;
}

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

.enrollment-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.enrollment-info {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

.enrollment-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.enrollment-info p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-point svg {
    flex-shrink: 0;
}

.enrollment-form {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

.why-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.why-card {
    flex: 1;
    min-width: 300px;
}

.why-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.why-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

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

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

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

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

.story-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e0e0e0;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.approach-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.approach-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 15px;
}

.approach-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.approach-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

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

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #357abd;
    transform: translateY(-3px);
}

.services-detail-section {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-card:nth-child(even) {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e8f4fd;
    color: #4a90e2;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-highlights h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-highlights ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-highlights ul li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.service-highlights ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.service-info {
    margin-bottom: 25px;
}

.info-item {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
}

.btn-enroll {
    padding: 15px 35px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-info-column h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-column > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info-block p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-map-column {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.location-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-details h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.location-details p {
    color: #666;
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.location-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e0e0e0;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-updated {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .ad-notice {
        order: 2;
        font-size: 10px;
        padding: 3px 8px;
    }

    .logo {
        order: 1;
    }

    .main-nav {
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0 10px;
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .section-header h2, .page-hero h1, .why-section h2, .testimonials-section h2, .values-section h2, .team-section h2, .faq-section h2 {
        font-size: 32px;
    }

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

    .story-grid, .enrollment-wrapper, .contact-grid, .service-detail-card {
        flex-direction: column;
    }

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

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