:root {
    --apple-blue: #0071e3;
    --apple-dark: #1d1d1f;
    --apple-gray: #86868b;
    --apple-light-gray: #f5f5f7;
    --apple-dark-gray: #575756;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --background: #ffffff;
    --border-color: #d2d2d7;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--apple-light-gray);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apple-education img {
    height: 40px;
    border-radius: 4px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-switch {
    position: relative;
    cursor: pointer;
}

.language-switch span {
    color: var(--text-secondary);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 5px;
    min-width: 120px;
    display: none;
    box-shadow: var(--card-shadow);
}

.language-switch:hover .language-dropdown {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background-color: var(--apple-light-gray);
}

.member-links {
    display: flex;
    gap: 20px;
}

.member-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.member-links a:hover {
    color: var(--apple-blue);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 36px;
}

.search-box {
    flex: 1;
    max-width: 300px;
    margin: 0 40px;
}

.search-box form {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 8px 36px 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--apple-blue);
}

.search-box button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    padding: 0 20px;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: var(--border-color);
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    padding: 8px 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--apple-blue);
}

/* Language Switch */
.language-switch {
    display: flex;
    align-items: center;
    margin-left: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

.language-switch a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0 5px;
    transition: var(--transition);
}

.language-switch a:hover,
.language-switch a.active {
    color: var(--apple-blue);
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
}

.banner-slide {
    position: relative;
    width: 100%;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #0051d5;
}

.btn-outline {
    border: 1px solid var(--apple-blue);
    color: var(--apple-blue);
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

/* About page sections */
section.about-section {
    padding: 70px 0 50px 0;
}

section.apple-education-section {
    padding: 70px 0 0 0;
}


section.contact-locations {
    padding: 0px 0 50px 0;
}

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

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Product Categories */
.product-categories {
    background-color: var(--apple-light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

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

.category-image {
    padding: 40px;
    background-color: var(--apple-light-gray);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.category-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.explore-link {
    color: var(--apple-blue);
    font-size: 16px;
    margin-bottom: 20px;
}

.view-more {
    text-align: center;
    margin-top: 50px;
}

/* Custom View More Button Design */
.btn-view-more {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-view-more:hover::before {
    left: 0;
}

.btn-view-more::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-view-more:hover::after {
    transform: translateX(5px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.feature-icon {
    font-size: 48px;
    color: var(--apple-blue);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Apple Education Section */

.education-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: top;
}

.education-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.education-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.education-image {
    justify-self: right;
}

.education-image img {
    width: 100%;
    max-width: 130px;
    border-radius: 12px;

}

/* Newsletter */
.newsletter {
    background-color: var(--apple-dark);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: var(--apple-blue);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #ffffff, var(--apple-light-gray));
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: linear-gradient(to right, transparent, var(--border-color), transparent); */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-section:first-child {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    opacity: 0.9;
}

.footer-section:first-child h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-section:first-child p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-section:last-child h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.footer-section a:hover {
    color: var(--apple-blue);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--apple-blue);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.apple-disclaimer {
    font-size: 12px !important;
    line-height: 1.6;
    color: var(--apple-gray);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    /* background: linear-gradient(135deg, var(--apple-blue), var(--apple-dark)); */
    color: var(--apple-dark-gray);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--apple-dark-gray);
}

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

/* About Page Styles */
.about-intro {
    margin-bottom: 60px;
}


/* .about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
} */

.store-gallery {
    margin-bottom: 60px;
}

.store-gallery h2 {
    padding-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}



.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.our-services {
    background-color: var(--apple-light-gray);
    padding: 60px 0;
    margin: 0 -20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.service-icon {
    font-size: 48px;
    color: var(--apple-blue);
    margin-bottom: 20px;
}

.company-timeline {
    margin-top: 60px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    text-align: right;
    font-weight: 600;
    color: var(--apple-blue);
}

.timeline-content {
    padding-left: 40px;
    border-left: 2px solid var(--border-color);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Education Page Styles */
.education-programs {
    padding: 60px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
    position: relative;
}

.program-card {
    position: relative;
    width: 350px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    flex-direction: column;
}

.program-card img {
    width: 100%;
    height: 280px;
    display: block;
}

.program-heading-wrapper {
    position: absolute;
    left: 18%;
    top: 23%;
    width: 230px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-heading {
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}


.program-card .date {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: .875rem;
    color: #666;
}

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


.education-benefits {
    background-color: var(--apple-light-gray);
    padding: 60px 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.benefit-list i {
    color: green;
    margin-right: 10px;
}

.benefit-image img {
    width: 100%;
    border-radius: 12px;
}

.how-to-apply {
    padding: 60px 0;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--apple-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

/* Contact Page Styles */
.contact-locations {
    padding: 60px 0;
}

.contact-locations h2 {
    padding-top: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge {
    background: var(--apple-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.location-info .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-info i {
    color: var(--apple-blue);
    width: 20px;
}

.contact-form-section {
    background: var(--apple-light-gray);
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

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

.contact-info .info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 10px;
}

.info-box .highlight {
    font-size: 24px;
    color: var(--apple-blue);
    font-weight: 600;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: var(--apple-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--apple-dark);
}

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

.map-placeholder {
    background: var(--apple-light-gray);
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.modal-content img[data-url]:not([data-url=""]) {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-content img[data-url]:not([data-url=""]):hover {
    transform: scale(1.02);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: var(--apple-blue);
}

.program-card {
    cursor: pointer;
}

/* Promotions Page Styles */
.promotions-section {
    padding: 60px 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promotion-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f5f5f7;
    aspect-ratio: 16 / 9;
}

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

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

.promotion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
}

.promotion-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Promotion Modal Styles */
.promotion-modal .modal-content {
    max-width: 800px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    margin: 50px auto;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.promotion-modal-content {
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

.promotion-modal-content img {
    width: 100%;
    /* height: 400px; */
    object-fit: contain;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.promotion-modal-text {
    padding: 40px;
    background: white;
    overflow-y: auto;
    flex: 1;
}

.promotion-modal-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.promotion-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.promotion-details {
    background: var(--apple-light-gray);
    padding: 25px;
    border-radius: 12px;
}

.promotion-details p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.promotion-details p:first-child {
    margin-top: 0;
}

.promotion-details p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--apple-blue), var(--apple-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .search-box {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 69px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 10px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu li:not(:last-child)::after {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-switch {
        position: absolute;
        top: 27px;
        right: 60px;
        margin-left: 0;
    }


    .section-title {
        font-size: 32px;
    }

    .education-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-section:first-child {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-section:last-child {
        text-align: center;
        width: 100%;
    }

    .footer-section:last-child h4 {
        text-align: center;
    }

    .footer-section ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section ul {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .apple-disclaimer {
        text-align: center;
    }

    /* About page responsive */
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-date {
        text-align: left;
    }

    .timeline-content {
        padding-left: 20px;
    }

    /* Education page responsive */
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Contact page responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* Promotions page responsive */
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotion-modal-content img {
        height: 250px;
    }

    .promotion-modal-text {
        padding: 25px;
    }

    .promotion-modal-text h2 {
        font-size: 24px;
    }
}