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

html {
    scroll-padding-top: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header Styles */
header {
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 0;
}

body.has-fixed-header {
    padding-top: 0px;
}

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

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

.logo img {
    max-width: 100%;
    height: 50px;
    width: auto;
    display: block;
    margin: 0px;
}

img {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 600;
    color: #667EEA;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding-right: 20px;
}

.hamburger span {
    width: 18px;
    height: 3px;
    background: #667EEA;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation */
nav {
    display: flex;
    gap: 30px;
}

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

nav a:hover {
    color: #667EEA;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #f0f4ff;
    color: #667EEA;
}

/* Sections */
section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
    background: white;
    margin-bottom: 0;
}

section:nth-child(odd) {
    background: #f5f5f5;
}

/* Page Content Section (for sub-pages) */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    margin-bottom: 0;
}

.page-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 0;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #667EEA;
    margin-top: 5px;
    margin-bottom: 5px;
}

.section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Content Styles */
h3 {
    color: #667EEA;
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.5em;
}

h4 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.2em;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

/* Service Items */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667EEA;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card h4 {
    margin-top: 0;
}

/* Media Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

thead {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

td {
    padding: 15px;
    vertical-align: top;
}

td:first-child {
    font-weight: 600;
    color: #667EEA;
}

a {
    color: #667EEA;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #764BA2;
    text-decoration: underline;
}

/* Event Card */
.event-card {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 20px 0;
    border-radius: 5px;
    background: white;
}

.event-card h4 {
    margin-top: 0;
    color: #667EEA;
}

/* Footer */
footer {
    background: #667EEA;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer p {
    color: white;
    margin: 0;
}

/* Subsection with Image */
.subsection-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.subsection-image {
    flex-shrink: 0;
    width: 250px;
    height: auto;
}

.subsection-image img {
    max-width: 100%;
    height: auto;
    margin: 0;
    border-radius: 8px;
}

.subsection-text {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
    }

    header {
        position: relative;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 2em;
    }

    table {
        font-size: 0.9em;
    }

    th, td {
        padding: 10px;
    }

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

    .subsection-content {
        flex-direction: column;
        gap: 15px;
    }

    .subsection-image {
        width: 100%;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #667EEA;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background: #764BA2;
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* Container Styles (for multi-page layout) */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    min-height: 100vh;
}

/* Media Coverage Container */
.container.media-container {
    max-width: 1000px;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #667EEA;
    padding-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Navigation */
.nav {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
}

.nav a {
    color: #667EEA;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.05em;
}

.nav a:hover {
    text-decoration: underline;
    color: #764BA2;
}

/* Container Page H2 */
.container h2 {
    color: #667EEA;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 2em;
    border-bottom: 2px solid #667EEA;
    padding-bottom: 10px;
}

/* Container Page H1 */
.container h1 {
    color: #667EEA;
    margin-bottom: 30px;
    font-size: 2.5em;
}

/* Container Page H3 */
.container h3 {
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Container Page H4 */
.container h4 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.1em;
}

/* Container Page Styling */
.container p {
    margin-bottom: 15px;
    text-align: justify;
}

.container ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.container li {
    margin-bottom: 10px;
}

/* Event Cards */
.event-card {
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #f9f9f9;
}

.event-card h3 {
    background: transparent;
    padding: 0;
    border: none;
}

/* Upcoming Events Specific */
.upcoming-events h3 {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #667EEA;
}

.upcoming-events p {
    text-align: center;
    font-size: 1.05em;
}

/* Media Coverage Table Styles */
.media-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.media-table thead {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.media-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
}

.media-table tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s ease;
}

.media-table tbody tr:hover {
    background-color: #f9f9f9;
}

.media-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.media-table tbody tr.year-group {
    background-color: #f0f4ff;
    font-weight: 700;
    color: #667EEA;
}

.media-table td {
    padding: 15px;
    vertical-align: top;
}

.media-table td:first-child {
    font-weight: 600;
    color: #667EEA;
    width: 80px;
}

.media-table td:nth-child(2) {
    font-weight: 500;
    color: #333;
    width: 200px;
}

/* Index Multi-Page Navigation Styles */
.index-page body {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    min-height: 100vh;
}

.index-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
}

.index-page header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    padding: 40px 0;
}

.index-page header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.index-page header p {
    font-size: 1.2em;
    opacity: 0.95;
}

.nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.nav-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #667EEA;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
    border-left-color: #764BA2;
}

.nav-card h3 {
    color: #667EEA;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.nav-card p {
    color: #666;
    font-size: 0.95em;
}

.index-page footer {
    text-align: center;
    color: white;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Social Media List */
.social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-media li {
    margin: 0;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667EEA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #764BA2;
    text-decoration: underline;
}






