/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* General Link Styles - Prevent default blue color and underlines */
a:not(.btn):not(.nav-link):not(.social-link):not(.footer-links a) {
    color: inherit !important;
    text-decoration: none !important;
}

a:not(.btn):not(.nav-link):not(.social-link):not(.footer-links a):hover {
    color: inherit !important;
    text-decoration: none !important;
}

a:not(.btn):not(.nav-link):not(.social-link):not(.footer-links a):visited {
    color: inherit !important;
    text-decoration: none !important;
}

a:not(.btn):not(.nav-link):not(.social-link):not(.footer-links a):active {
    color: inherit !important;
    text-decoration: none !important;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Gradients */
.pink-gradient {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.orange-gradient {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Top Bar */
.top-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
    margin-top: 0px;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
}

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

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

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
}

.logo-text p {
    font-size: 0.875rem;
    color: #3b82f6;
    line-height: 1;
}

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

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.desktop-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}

.mobile-cta {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 24px 0;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stat-item i {
    font-size: 2rem;
    color: #93c5fd;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    color: #93c5fd;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.2), transparent);
}

.floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0f2fe;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    background: #dbeafe;
    padding: 12px;
    border-radius: 50%;
    color: #3b82f6;
}

.card-number {
    font-weight: 800;
    color: #1f2937;
}

.card-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    background: #dbeafe;
    padding: 12px;
    border-radius: 50%;
    color: #3b82f6;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.stats-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 48px;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label-large {
    color: #6b7280;
    font-weight: 500;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: white;
}

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

.course-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.course-card.popular {
    border: 4px solid #3b82f6;
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 56px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.course-header {
    padding: 24px;
    color: white;
}

.course-header i {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.course-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.course-content {
    padding: 24px;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

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

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    color: #1f2937;
}

.course-features {
    margin-bottom: 24px;
}

.features-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.features-list i {
    color: #10b981;
    font-size: 1rem;
}

.course-price {
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.price-period {
    color: #6b7280;
}

.course-btn {
    width: 100%;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.course-btn.disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.course-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Course Status Bands */
.course-status-band {
    position: absolute;
    top: 36px;
    right: -56px;
    color: white;
    padding: 6px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    transform: rotate(-315deg);
    text-align: center;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.course-status-band.past {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.course-status-band.full {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.course-status-band.available {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Course Schedule */
.course-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.course-schedule i {
    color: #3b82f6;
    font-size: 1rem;
}

.additional-info {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 48px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.info-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.info-card p {
    color: #6b7280;
}

/* Instructors Section */
.instructors {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #f0f9ff);
}

.instructors-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

.instructor-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.instructor-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.instructor-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.instructor-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: all 0.3s ease;
    padding: 32px;
}

.instructor-card:hover {
    transform: none;
    box-shadow: none;
}

.instructor-image {
    position: relative;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instructor-card:hover .image-overlay {
    opacity: 1;
}

.rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.rating-badge i {
    color: #fbbf24;
}

.instructor-content {
    padding: 24px;
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.instructor-title {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 8px;
}

.instructor-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.stat-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.certifications {
    margin-bottom: 20px;
}

.certifications h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cert-tag {
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.instructor-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instructor-btn:hover {
    background: #2563eb;
}

.instructor-info {
    background: transparent;
    border-radius: 0;
    padding: 32px;
    height: auto;
    position: static;
}

.instructor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.instructor-highlights {
    margin-top: 24px;
}

.instructor-highlights h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.instructor-highlights ul {
    list-style: none;
    padding: 0;
}

.instructor-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.875rem;
}

.instructor-highlights li i {
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

.phone-link {
    color: #3b82f6 !important;
    font-weight: 500;
    text-decoration: none !important;
}

.phone-link:hover {
    color: #2563eb !important;
}

/* Read More Button Styles */
.read-more-btn {
    display: none !important; /* Desktop'ta gizli */
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    align-items: center;
    gap: 6px;
}

.read-more-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.read-more-icon {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* Mobile responsive styles for read more */
@media (max-width: 768px) {
    .read-more-btn {
        display: inline-flex !important; /* Mobilde göster */
    }
    
    .instructor-description .description-text {
        overflow: hidden;
        position: relative;
        max-height: 120px; /* Başlangıçta kısıtlı yükseklik */
        transition: max-height 0.3s ease;
        line-height: 1.6;
    }
    
    .instructor-description .description-text.expanded {
        max-height: 1000px; /* Genişletildiğinde yeterli yükseklik */
    }
    
    .instructor-description .description-text:not(.expanded)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(transparent, white);
        pointer-events: none;
    }
    
    .instructor-info {
        padding: 24px;
    }
}

/* Animation for instructor rows */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.instructor-row:nth-child(1) { animation-delay: 0.1s; }
.instructor-row:nth-child(2) { animation-delay: 0.2s; }
.instructor-row:nth-child(3) { animation-delay: 0.3s; }
.instructor-row:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-stats {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 48px;
    margin-bottom: 48px;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.team-stat i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 16px;
}

.team-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.team-stat-label {
    color: #6b7280;
    font-weight: 500;
}

.instructors-cta {
    text-align: center;
}

.instructors-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.instructors-cta p {
    color: #6b7280;
    margin-bottom: 24px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 32px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.form-success {
    text-align: center;
    padding: 32px;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-success p {
    color: #6b7280;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-submit-btn {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: #2563eb;
}

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

.quick-contact {
    background: #1e3a8a;
    color: white;
    border-radius: 16px;
    padding: 32px;
}

.quick-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
}

.contact-value {
    font-size: 0.875rem;
}

.locations h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-card h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.location-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.map-section {
    margin-top: 60px;
}

.map-placeholder {
    background: #f3f4f6;
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

.footer-main {
    padding: 60px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.footer-logo-text p {
    color: #93c5fd;
    font-size: 0.875rem;
    line-height: 1;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

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

.footer-links a::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: #93c5fd;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: #d1d5db;
    margin-bottom: 2px;
}

.footer-contact-item span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phone Link Styles */
.phone-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.phone-link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.phone-link:active {
    color: inherit !important;
    text-decoration: none !important;
}

.phone-link span {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.phone-link:hover span {
    color: inherit !important;
    text-decoration: none !important;
}

.phone-link p {
    margin: 0;
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.phone-link:hover p {
    color: inherit !important;
    text-decoration: none !important;
}

/* Email Link Styles */
.email-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.email-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.email-link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.email-link:active {
    color: inherit !important;
    text-decoration: none !important;
}

.email-link p {
    margin: 0;
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.email-link:hover p {
    color: inherit !important;
    text-decoration: none !important;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cookie-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
}

.legal-date {
    background: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

.legal-body {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    color: #4b5563;
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section ul li strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-info {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #3b82f6;
}

.contact-info p {
    margin-bottom: 10px;
    color: #374151;
}

.contact-info strong {
    color: #1e293b;
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
}

.legal-footer .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Cookie Table Styles */
.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #3b82f6;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table tr:hover {
    background: #f8fafc;
}

.cookie-table td {
    color: #4b5563;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body {
        padding: 25px;
        margin: 0 10px 30px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-body {
        padding: 20px;
        margin: 0 5px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* No courses message */
.no-courses-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
}

.no-courses-message p {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu.open {
    display: block;
}

/* Comprehensive Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header adjustments */
    .desktop-nav {
        gap: 24px;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* About section */
    .about-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Courses grid */
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Instructors grid */
    .instructors-list {
        gap: 32px;
    }
    
    .instructor-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .instructor-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact section */
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* General container */
    .container {
        padding: 0 12px;
    }
    
    /* Section spacing */
    section {
        padding: 60px 0;
    }
    
    /* Top bar */
    .top-bar {
        display: none;
    }
    
    /* Header */
    .header {
        margin-top: 0;
        padding: 12px 0;
    }
    
    .header.scrolled {
        padding: 8px 0;
    }
    
    .desktop-nav,
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    /* Hero section */
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .slide-indicators {
        bottom: 100px;
    }
    
    .stats-bar {
        padding: 16px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Section headers */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* About section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-img {
        height: 300px;
    }
    
    .floating-card {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-card {
        padding: 32px 20px;
        margin-bottom: 40px;
    }
    
    /* Courses section */
    .courses {
        padding: 60px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .course-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-title {
        font-size: 1.3rem;
    }
    
    .course-description {
        font-size: 0.9rem;
    }
    
    .course-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .course-price {
        font-size: 1.3rem;
    }
    
    /* Instructors section */
    .instructors {
        padding: 60px 0;
    }
    
    .instructors-list {
        gap: 24px;
    }
    
    .instructor-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructor-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .instructor-card {
        padding: 24px;
    }
    
    .instructor-info {
        position: static;
        margin-bottom: 24px;
        padding: 24px;
    }
    
    .instructor-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .instructor-image {
        height: 250px;
    }
    
    .team-stats {
        padding: 32px 20px;
        margin-bottom: 32px;
    }
    
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .team-stat i {
        font-size: 2.5rem;
    }
    
    .team-stat-number {
        font-size: 2rem;
    }
    
    /* Contact section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-contact {
        padding: 24px;
    }
    
    .location-cards {
        gap: 12px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    /* Footer */
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Ultra mobile adjustments */
    .container {
        padding: 0 8px;
    }
    
    /* Section spacing */
    section {
        padding: 40px 0;
    }
    
    /* Header */
    .header {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .mobile-menu-btn {
        font-size: 20px;
    }
    
    /* Hero section */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        padding: 0 15px;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-arrow {
        left: 8px;
    }
    
    .next-arrow {
        right: 8px;
    }
    
    .slide-indicators {
        bottom: 80px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .stats-bar {
        padding: 12px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Section headers */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    /* About section */
    .about-img {
        height: 250px;
    }
    
    .about-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .about-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .floating-card {
        padding: 16px;
    }
    
    .stats-card {
        padding: 24px 15px;
    }
    
    .team-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Courses section */
    .course-card {
        max-width: 100%;
    }
    
    .course-image {
        height: 180px;
    }
    
    .course-content {
        padding: 16px;
    }
    
    .course-title {
        font-size: 1.2rem;
    }
    
    .course-description {
        font-size: 0.85rem;
    }
    
    .course-meta {
        gap: 6px;
    }
    
    .course-price {
        font-size: 1.2rem;
    }
    
    /* Instructors section */
    .instructors-list {
        gap: 20px;
    }
    
    .instructor-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .instructor-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructor-card {
        max-width: 100%;
        padding: 20px;
    }
    
    .instructor-info {
        padding: 20px;
    }
    
    .instructor-image {
        height: 220px;
    }
    
    .instructor-content {
        padding: 16px;
    }
    
    /* Contact section */
    .contact-form-container {
        padding: 20px;
    }
    
    .quick-contact {
        padding: 20px;
    }
    
    .contact-items {
        gap: 12px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .location-card {
        padding: 16px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-main {
        padding: 30px 0;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .social-links {
        justify-content: center;
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-contact {
        gap: 12px;
    }
    
    .footer-contact-item {
        gap: 8px;
    }
    
    .footer-bottom {
        padding: 16px 0;
    }
    
    .footer-bottom-content {
        gap: 8px;
    }
    
    .copyright,
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
}

/* Landscape phone adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* High resolution mobile displays */
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .course-title,
    .about-title {
        font-size: 1.6rem;
    }
}

/* Mobile slider height improvement */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
        min-height: 550px;
    }
}

/* Mobile stats grid - 3 columns */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 12px;
        padding: 0 16px;
    }
    
    .stat-item i {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Instructor info text truncation with read more */
.instructor-description {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.instructor-description.truncated {
    line-height: 1.4;
}

.instructor-description.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 1.4em;
    background: linear-gradient(to right, transparent, white);
}