/* ============================================
   Edify Academy - Modern Spaced Design
   Inspired by adastratuition.co.uk
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1e3a8a; /* Dark blue from logo */
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #14b8a6; /* Teal from logo */
    --accent-color: #f97316; /* Orange from logo */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.125rem;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.logo img {
    height: 175px;
    width: auto;
    max-width: 100%;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 6px;
    margin-left: var(--spacing-sm);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.section {
    padding: var(--spacing-2xl) 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
    padding: var(--spacing-xl) 0;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    text-align: center;
    background: var(--bg-light);
}

.page-title {
    margin-bottom: var(--spacing-md);
}

.page-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card .feature-title {
    padding: var(--spacing-md);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.feature-card .feature-text {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-color);
    color: white;
}

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

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

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

/* Content Sections */
.content-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.content-text {
    padding: var(--spacing-md);
}

.content-title {
    margin-bottom: var(--spacing-md);
}

.content-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Timeline Section */
.timeline-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.timeline {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    position: relative;
    padding-left: var(--spacing-lg);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    padding-left: var(--spacing-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.timeline-title {
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.timeline-content img {
    margin-top: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Teaching Section */
.teaching-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.teaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.teaching-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

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

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

.teaching-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-family: var(--font-heading);
}

.teaching-title {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.teaching-text {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Instructors Section */
.instructors-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.instructor-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.instructor-info {
    padding: var(--spacing-lg);
}

.instructor-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.instructor-subject {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

/* Vacancies Section */
.vacancies-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.vacancies-list {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vacancy-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.vacancy-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.vacancy-details {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

/* Safeguarding Section */
.safeguarding-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.safeguarding-content > p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.safeguarding-image {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.safeguarding-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.safeguarding-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.safeguarding-point {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.safeguarding-point h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.safeguarding-point p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.safeguarding-download {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* FAQs Section */
.faqs-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.faqs-list {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Courses Section */
.courses-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.courses-grid {
    display: grid;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.course-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.course-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.course-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.course-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.course-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.course-image-inline {
    margin: var(--spacing-md) 0;
}

.course-image-inline img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Info Section */
.info-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.info-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.info-card h3 {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
    padding: var(--spacing-2xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-image {
    margin-top: var(--spacing-md);
}

.contact-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #dc2626;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.form-error {
    display: none;
    background: #fee2e2;
    color: #991b1b;
    padding: var(--spacing-sm);
    border-radius: 6px;
    margin-bottom: var(--spacing-md);
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

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

.footer-section h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--spacing-sm);
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-row,
    .course-card,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .course-image {
        order: -1;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: var(--spacing-lg) 0;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .features-grid,
    .testimonials-grid,
    .teaching-grid,
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 125px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    .logo img {
        height: 100px;
    }
}
