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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 16px;
    letter-spacing: 0.3px;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.main-header {
    background: #2c3e50;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: #e67e22;
    outline: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:focus {
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.3);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-left: 40px;
    z-index: 2;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-placeholder .placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-placeholder .placeholder-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #27ae60;
    color: white;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-section h2,
.programs-section h2,
.contact-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.about-section h2::after,
.programs-section h2::after,
.contact-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e67e22;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.stat p {
    font-weight: 600;
    color: #2c3e50;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-placeholder {
    width: 100%;
    max-width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.founder-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.founder-placeholder h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.founder-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
}

.caption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Programs Section */
.programs-section {
    padding: 80px 20px;
    background: white;
}

.programs-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.program-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e67e22;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
}

.testimonials-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e67e22;
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.testimonial cite {
    font-weight: 600;
    color: #e67e22;
}

/* Accreditation Section */
.accreditation-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.accreditation-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.accreditation-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e67e22;
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

.accred-item {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.accred-item h4 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    transform: translateY(-1px);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #e67e22;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e67e22;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        display: flex !important;
        flex-direction: column;
        padding: 80px 0 0 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: #2c3e50;
        border-bottom: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: #f8f9fa;
        color: #e67e22;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Faculty & Blog Pages */
.page-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.nav-menu .active {
    color: #e67e22;
    font-weight: 700;
}

/* Faculty Page Styles */
.faculty-section {
    padding: 80px 20px;
    background: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
}

.faculty-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faculty-photo {
    flex-shrink: 0;
    width: 150px;
}

.faculty-photo img {
    width: 100%;
    border-radius: 10px;
}

.placeholder-portrait {
    width: 150px;
    height: 180px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.faculty-info h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.faculty-info .title {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.faculty-info .credentials {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(230, 126, 34, 0.05);
    border-left: 3px solid #e67e22;
    border-radius: 0 6px 6px 0;
}

.faculty-info .bio {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty {
    background: #e67e22;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Awards Section */
.awards-section {
    padding: 60px 20px;
    background: white;
}

.awards-section h2 {
    font-family: 'Merriweather', serif;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.award-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 3px solid #e67e22;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h4 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #666;
    font-style: italic;
}

/* Blog Page Styles - Similar to Programs Section */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #2c3e50;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.news-category.achievement { background: #27ae60; }
.news-category.faculty { background: #8e44ad; }
.news-category.community { background: #e74c3c; }
.news-category.research { background: #3498db; }
.news-category.fun-fact { background: #f39c12; }
.news-category.program-update { background: #e67e22; }

.news-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

.news-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.news-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.news-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.news-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e67e22;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    font-style: italic;
    border-left: 4px solid #e67e22;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        padding: 1.5rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-card h3 {
        font-size: 1.2rem;
    }
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-top: 5px solid #e67e22;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-widget h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

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

.fact-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.event-item date {
    background: #e67e22;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 55px;
    text-align: center;
    line-height: 1.2;
}

.event-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.event-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.spotlight {
    padding: 1.75rem;
    background: white;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
    line-height: 1.6;
}

.spotlight h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.spotlight p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.spotlight cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .faculty-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .blog-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post {
        padding: 2rem;
    }
    
    .blog-post.featured {
        padding: 2.5rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-section,
    .programs-section,
    .contact-section,
    .testimonials-section {
        padding: 40px 20px;
    }
    
    .page-hero {
        padding: 60px 20px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .faculty-card {
        padding: 1.5rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post.featured {
        padding: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-post h2 {
        font-size: 1.5rem;
    }
    
    .blog-post h3 {
        font-size: 1.2rem;
    }
}