/* Global styles for World Embryology Training Solutions */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a4ef;
    --secondary-color: #3c3950;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #08232e;
    --max-width: 1400px;
    --full-width: 100vw;
    --scrollbar-width: calc(100vw - 100%);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--gray-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.site-header.scrolled .logo img {
    height: 84px;
    width: 132px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disable scroll effect on mobile */
/**/

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 8px 0;
    font-size: 14px;
    color: var(--white);
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.address, .phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
}

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

.social-links a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    opacity: 0.8;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
}

/* Main Header */
.main-header {
    padding: 20px 0;
}

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

.logo img {
    height: 131px;
    width: 206px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li.active {
    border: 2px solid var(--secondary-color);
}

/* Mobile dropdown toggle */
.dropdown-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--gray-dark);
    float: right;
}

.dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.open svg {
    transform: rotate(180deg);
}

/* Hide mobile elements on desktop */
.mobile-contact,
.mobile-cta {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--gray-dark);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.main-nav a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: var(--gray-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Dropdown styles */
.has-dropdown > .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gray-light);
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    border-left: 4px solid var(--primary-color);
}

.has-dropdown:hover > .dropdown {
    display: block;
}

.dropdown li {
    border: none;
    border-bottom: 1px solid #ddd;
}

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

.dropdown a {
    padding: 10px 15px;
    border: none;
    color: var(--gray-dark);
}

.dropdown a:hover {
    background: rgba(0, 164, 239, 0.1);
}

.dropdown .has-dropdown > .dropdown {
    left: 100%;
    top: 0;
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 0;
}

.main-content .container:first-child {
    max-width: var(--max-width);
    margin: 0 auto;
padding: 0 20px
}

/* Homepage specific - no padding when hero banner is present */
/*.main-content:has(.hero-banner) {
    padding: 0;
}

.main-content:has(.hero-banner) .container {
    padding: 0;
}*/

/* Inner page specific - no padding when inner hero banner is present */
/*.main-content:has(.inner-hero-banner) {
    padding: 0;
}

.main-content:has(.inner-hero-banner) .container {
    padding: 0;
}*/

/* Footer */
.site-footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column:first-child {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-logo img {
    height: 120px;
    width: auto;
filter: brightness(0) invert(1); /* Make logo white if it's dark */
}

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Hero Banner */
.hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 700px;
    background: url('/assets/images/homepage-banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--gray-dark);
    overflow: hidden;
}

.hero-content {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-welcome {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--gray-dark);
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
}

.hero-button:hover {
    background: #0092d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.4);
}

/* Inner Page Hero Banner */
.inner-hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-height: 370px;
    height: 370px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-size: 100% auto;*/
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.inner-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero-content {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.inner-hero-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--white) !important;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: left;
}

.about-hero{
    background: url('/assets/images/about/about-hero.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
}

.individual-staff-hero {
    background: url('/assets/images/about/individual-staff.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Sections */
.about-sections {
    padding: 80px 0px;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 164, 239, 0.65);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.image-caption:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.4);
}

.about-text h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: none;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Video Link Styles */
.video-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
}

.video-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.4);
}

.play-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Video Lightbox Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-lightbox.active {
    display: flex;
    opacity: 1;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-lightbox.active .video-lightbox-content {
    transform: scale(1);
}

.video-lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.video-lightbox-close:hover {
    color: var(--primary-color);
}

/* Our Mission Section */
.our-mission {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--primary-color);
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
}

.our-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mission-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.mission-title {
    text-align: center;
    margin-bottom: 60px;
}

.our-mission .mission-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: none;
}

.mission-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--white);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.3));
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.mission-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    font-family: 'Source Sans Pro', sans-serif;
}

.mission-cta {
    text-align: center;
    margin-top: 40px;
}

.mission-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.mission-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.mission-button:hover::before {
    left: 100%;
}

/* Workshops Section */
.workshops-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--gray-light);
    padding: 60px 20px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.workshops-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.workshops-header {
    text-align: center;
    margin-bottom: 40px;
}

.workshops-header h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.workshops-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
}

.workshops-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.workshop-sponsor {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    padding: 8px 15px;
    background: var(--gray-light);
    border-radius: 20px;
    display: inline-block;
}

.workshop-description {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Our Staff Section */
.our-staff {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: var(--gray-light);
    overflow: hidden;
}

.our-staff .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.staff-header h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: none;
}

.staff-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
}

.staff-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-grid > .staff-card {
    width: 100%;
}

.staff-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.staff-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.staff-image {
    text-align: center;
    padding: 30px 30px 20px;
}

.staff-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 164, 239, 0.2);
    transition: border-color 0.3s ease;
}

.staff-card:hover .staff-image img {
    border-color: var(--secondary-color);
}

.staff-info {
    padding: 0 30px 30px;
    text-align: center;
}

.staff-info h3 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    border-bottom: none;
}

.staff-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.staff-phone,
.staff-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
}

.staff-phone svg,
.staff-email svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.staff-phone a,
.staff-email a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.staff-phone a:hover,
.staff-email a:hover {
    color: var(--primary-color);
}

/* Fix for empty paragraphs that might interfere with grid layout */
.our-staff p:empty {
    display: none;
}

/* Our Sponsors Section */
.our-sponsors {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: var(--white);
    overflow: hidden;
}

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

.sponsors-header h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: none;
}

.sponsors-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Testimonials Section */
.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 600px;
}

.testimonials-content {
    background: var(--primary-color);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    min-height: 400px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--white);
    font-family: 'Source Sans Pro', sans-serif;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -40px;
    left: -10px;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.testimonial-author span {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Source Sans Pro', sans-serif;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.dot.active,
.dot:hover {
    background: var(--white);
    border-color: var(--white);
}

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

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fix for empty paragraphs in testimonials section */
.testimonials-section p:empty {
    display: none;
}

.testimonials-container p:empty {
    display: none;
}

/* Call to Action Section */
.cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--primary-color);
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
    opacity: 0.3;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
}
50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.2;
}
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.cta-section .cta-content h2 {
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-contact-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white);
}

.cta-contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 164, 239, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.cta-contact-button:hover::before {
    left: 100%;
}

.cta-contact-button:active {
    transform: translateY(-1px);
}

/* Google Map Section */
.map-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--white);
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 507px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content h1 {
    text-align: center;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-top: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.privacy-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-teal);
}

.privacy-item h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-item h3 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.privacy-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-item li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
}

.privacy-item li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-details {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 15px;
}

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

/* Responsive Design */

/* Content styling */
.main-content h1 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.main-content h2 {
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin: 2rem 0 1rem 0;
}

.main-content p {
    margin-bottom: 1rem;
}

.main-content ul, .main-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.main-content li {
    margin-bottom: 0.5rem;
}

code {
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Individual Staff Page Styles */
.staff-profile-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.staff-profile-row .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Photo Gallery Page Styles */
.photos-hero {
    background: url('/assets/images/photos-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.photo-gallery-section {
    padding: 80px 20px;
    background: var(--white);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.photo-item {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    justify-self: center;
}

.photo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 164, 239, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    stroke-width: 2;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

/* Courses Page Styles */
.courses-hero {
    background: url('/assets/images/banner-courses.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
}

.courses-section {
    padding: 80px 0px;
    background: var(--white);
}

.courses-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Course Tabs */
.course-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 120px;
}

.course-tab {
    background: var(--gray-light);
    border: 2px solid #e0e0e0;
    color: var(--gray-dark);
    padding: 16px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: none;
    line-height: 1.4;
}

.course-tab:hover {
    background: #f0f0f0;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.course-tab.active {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 164, 239, 0.15);
}

/* Course Content */
.course-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
    min-height: 600px;
}

.course-panel {
    display: none;
}

.course-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.course-panel h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.course-panel h3 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.course-panel h4 {
    color: var(--gray-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.course-panel p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.course-panel ul {
    margin: 15px 0;
    padding-left: 20px;
}

.course-panel li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.course-details {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.course-details p {
    margin-bottom: 8px;
    font-weight: 600;
}

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

.syllabus-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.syllabus-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.workshop-list {
    margin: 20px 0;
}

.workshop-item {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.workshop-item h3 {
    margin: 0;
    font-size: 18px;
    color: var(--secondary-color);
}

.course-cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
}

.get-started-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.3);
}

.get-started-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 57, 80, 0.4);
}

/* Course Slideshow */
.course-slideshow {
    margin-top: 80px;
    grid-column: 1 / -1;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--gray-dark);
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev svg,
.slide-next svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.slideshow-dots .dot.active,
.slideshow-dots .dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Course Materials Page Styles */
.course-materials-hero {
    background: url('/assets/images/photos-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.course-materials-section {
    padding: 80px 20px;
    background: var(--white);
    min-height: 60vh;
}

/* Password Protection Styles */
.password-protection {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.password-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.password-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.password-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    stroke-width: 1.5;
}

.password-container h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: none;
}

.password-container p {
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

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

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--gray-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 164, 239, 0.1);
}

.password-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 164, 239, 0.3);
}

.password-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 57, 80, 0.4);
}

.password-submit .button-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.password-submit:hover .button-icon {
    transform: translateX(2px);
}

.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fef2f2;
    color: #dc2626;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

.error-message svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Shake animation for error  */
@keyframes shake {
0%, 20%, 40%, 60%, 80% {
    transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
}
}

.password-form.shake {
    animation: shake 0.5s ease-in-out;
}

/* Protected Content Styles */
.protected-content {
    animation: fadeIn 0.5s ease-in-out;
}

.materials-welcome {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.materials-welcome h2 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: none;
}

.materials-welcome p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-dark);
    opacity: 0.8;
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.material-category {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.material-category h3 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-description {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 25px;
    font-style: italic;
}

.material-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--gray-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.material-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

.material-icon {
    flex-shrink: 0;
}

.material-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.material-item:hover .material-icon svg {
    color: var(--secondary-color);
}

.material-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

/* Schedule Page Styles */
.schedule-hero {
    background: url('/assets/images/schedule.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.schedule-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schedule-date,
.schedule-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.schedule-instructor {
    margin-bottom: 0;
}

.schedule-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.schedule-date span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
}

.schedule-instructor span {
    color: var(--text-color);
    font-size: 15px;
}

.course-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive adjustments for schedule */

/* Webinars Page Styles */
.webinars-hero {
    background-image: url('/assets/images/photos-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.webinars-section {
    padding: 60px 0;
    background: var(--white);
}

.webinars-intro {
    text-align: center;
    margin-bottom: 50px;
}

.webinars-intro p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.webinar-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* FAQ Page Styles */
.faq-hero {
    background: url('/assets/images/faqs-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.faq-questions h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 4px 20px rgba(0, 150, 136, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(31, 84, 147, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fdff;
}

.faq-item.active .faq-question {
    background: #f0f9ff;
    border-bottom: 1px solid #e8f4f8;
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    color: var(--accent-teal);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 150, 136, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--accent-teal);
    color: var(--white);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 30px 25px;
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

.faq-image {
    position: sticky;
    top: 100px;
}

.faq-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */

@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .faq-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .faq-image img {
        height: 500px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {


    .inner-hero-banner {
        height: 280px;
        max-height: 280px;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }

    .inner-hero-banner h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .about-sections {
        padding: 40px 0px;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-image {
        padding: 0;
    }

    .about-image img {
        height: 250px;
    }

    .image-caption {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
        text-align: center;
    }

    .about-text {
        padding: 0;
    }

    .about-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .our-mission {
        padding: 60px 0;
    }

    .mission-title h2 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .mission-item {
        padding: 25px;
        margin: 0 20px;
    }

    .mission-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .mission-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .mission-button {
        padding: 16px 32px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .staff-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .staff-header h2 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .staff-header p {
        font-size: 16px;
        padding: 0 20px;
    }

    .staff-image {
        padding: 25px 25px 15px;
    }

    .staff-image img {
        width: 140px;
        height: 140px;
    }

    .staff-info {
        padding: 0 25px 25px;
    }

    .staff-info h3 {
        font-size: 18px;
    }

    .staff-title {
        font-size: 14px;
    }

    .staff-contact {
        gap: 10px;
    }

    .staff-phone,
    .staff-email {
        font-size: 13px;
    }

    .testimonials-section {
        min-height: auto;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testimonials-content {
        padding: 60px 30px;
        order: 2;
    }

    .testimonials-slider {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .testimonial-text::before {
        font-size: 80px;
        top: -25px;
        left: -5px;
    }

    .testimonial-author strong {
        font-size: 18px;
    }

    .testimonial-author span {
        font-size: 16px;
    }

    .testimonials-image {
        order: 1;
        min-height: 300px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

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

    .cta-section .cta-content h2 {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .cta-section .cta-content p {
        font-size: 18px;
        margin-bottom: 35px !important;
        padding: 0 20px;
    }

    .cta-contact-button {
        padding: 16px 40px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .map-container {
        height: 400px;
    }

    .top-bar {
        display: none;
    }


    .mobile-blue-bar {
        display: block;
        height: 3px;
        background: var(--primary-color);
        width: 100%;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

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

    .mobile-menu-toggle {
        display: block;
        position: static;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        height: 100px;
        width: auto;
    }

    .dropdown-toggle {
        display: block;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        display: none;
        background: var(--white);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .main-nav.open ul {
        display: flex;
    }

    .main-nav > ul > li {
        width: 100%;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .main-nav > ul > li.active {
        background: var(--gray-light);
        border: none;
        border-left: 4px solid var(--primary-color);
    }

    .main-nav a {
        padding: 15px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-dropdown > .dropdown {
        position: static;
        display: none !important;
        box-shadow: none;
        background: var(--gray-light);
        margin: 0;
        border-left: none;
    }

    .has-dropdown.open > .dropdown {
        display: block !important;
    }

    .dropdown a {
        padding: 12px 30px;
        border-left: 2px solid var(--primary-color);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .footer-column:first-child {
        order: 1;
        text-align: center;
    }

    .footer-column:nth-child(2) {
        order: 2;
    }

    .footer-column:nth-child(3) {
        order: 3;
    }

    .footer-column:nth-child(4) {
        order: 4;
        text-align: center;
    }


    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
        order: 1;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-column:nth-child(2) {
        order: 2;
        text-align: center;
    }

    .footer-column:nth-child(3) {
        order: 3;
        text-align: center;
    }

    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
        order: 4;
        text-align: center;
        margin-top: 10px;
    }


    .footer-column:nth-child(4) .social-links {
        justify-content: center;
        margin-top: 15px;
        padding: 20px 0;
        gap: 20px;
    }

    .footer-column:nth-child(4) .social-links a svg {
        width: 40px;
        height: 40px;
    }

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

    .hero-banner {
        height: 500px;
        background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('/assets/images/homepage-banner1.jpg');
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-welcome {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 16px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.4);
    }

    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }


    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .sponsor-item {
        height: 100px;
        padding: 15px;
    }

    .sponsor-item img {
        max-height: 60px;
    }

    .staff-profile-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .staff-profile-row .about-image img {
        height: auto;
    }

    .photo-gallery-section {
        padding: 60px 0;
    }

    .gallery-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .gallery-intro p {
        font-size: 16px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
        margin: 0 20px;
    }

    .photo-item {
        width: 140px;
        height: 140px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        bottom: 20px;
    }

    .course-materials-section {
        padding: 60px 0;
    }

    .password-container {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .password-icon svg {
        width: 48px;
        height: 48px;
    }

    .password-container h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .password-container p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 15px;
    }

    .password-submit {
        padding: 14px 28px;
        font-size: 14px;
    }

    .materials-welcome h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .materials-welcome p {
        font-size: 16px;
    }

    .materials-grid {
        gap: 30px;
        margin: 0 20px;
    }

    .material-category {
        padding: 25px 20px;
    }

    .material-category h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .material-item {
        padding: 14px 16px;
    }

    .material-icon svg {
        width: 20px;
        height: 20px;
    }

    .material-item span {
        font-size: 13px;
    }

    .schedule-item {
        padding: 15px;
    }

    .schedule-date span {
        font-size: 14px;
    }

    .schedule-instructor span {
        font-size: 13px;
    }

    .schedule-icon {
        width: 18px;
        height: 18px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-questions h2 {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-toggle {
        font-size: 20px;
        width: 25px;
        height: 25px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 25px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-image {
        position: static;
        order: -1;
    }

    .faq-image img {
        height: 300px;
    }

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

    .courses-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
    }

    .course-tabs {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        order: 1;
    }

    .course-tab {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 13px;
    }

    .course-content {
        order: 2;
        padding: 30px 20px;
        min-height: auto;
    }

    .course-panel h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .course-panel h3 {
        font-size: 18px;
        margin: 25px 0 12px 0;
    }

    .course-panel h4 {
        font-size: 15px;
    }

    .course-panel p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .course-details {
        padding: 20px;
        margin: 20px 0;
    }

    .course-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .course-slideshow {
        margin: 30px 0;
    }

    .slideshow-container {
        border-radius: 8px;
    }

    .slideshow-slide img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .inner-hero-banner {
        height: 250px;
        max-height: 250px;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }

    .inner-hero-banner h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .about-sections {
        padding: 30px 0px;
    }

    .about-row {
        gap: 20px;
        margin-bottom: 40px;
    }

    .about-image {
        padding: 0;
    }

    .about-image img {
        height: 200px;
    }

    .image-caption {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 12px;
        text-align: center;
    }

    .about-text {
        padding: 0;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .our-mission {
        padding: 50px 0;
    }

    .mission-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .mission-title::after {
        width: 80px;
        height: 3px;
        margin: 15px auto 0;
    }

    .mission-grid {
        gap: 25px;
        margin-bottom: 40px;
    }

    .mission-item {
        padding: 20px;
        margin: 0 15px;
    }

    .mission-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mission-text {
        font-size: 14px;
    }

    .mission-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .our-staff {
        padding: 60px 0;
    }

    .staff-header h2 {
        font-size: 28px;
    }

    .staff-header p {
        font-size: 15px;
        padding: 0 15px;
    }

    .staff-grid {
        gap: 25px;
        margin: 0 15px;
    }

    .staff-image {
        padding: 20px 20px 12px;
    }

    .staff-image img {
        width: 120px;
        height: 120px;
    }

    .staff-info {
        padding: 0 20px 20px;
    }

    .staff-info h3 {
        font-size: 16px;
    }

    .staff-title {
        font-size: 13px;
    }

    .staff-phone,
    .staff-email {
        font-size: 12px;
    }

    .testimonials-content {
        padding: 50px 20px;
    }

    .testimonials-slider {
        min-height: 320px;
        margin-bottom: 25px;
    }

    .testimonial-text {
        font-size: 18px;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .testimonial-text::before {
        font-size: 60px;
        top: -20px;
        left: -5px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }

    .testimonial-author span {
        font-size: 14px;
    }

    .testimonials-image {
        min-height: 250px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section .cta-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-section .cta-content p {
        font-size: 16px;
        margin-bottom: 30px !important;
        padding: 0 15px;
    }

    .cta-contact-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .map-container {
        height: 350px;
    }

    .hero-banner {
        height: 450px;
        background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('/assets/images/homepage-banner1.jpg');
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-welcome {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.4);
    }

    .staff-profile-row .about-image img {
        height: auto;
    }

    .photo-gallery-section {
        padding: 50px 0;
    }

    .gallery-intro {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .gallery-intro p {
        font-size: 15px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
        margin: 0 15px;
    }

    .photo-item {
        width: 120px;
        height: 120px;
    }

    .photo-overlay svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px 8px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-counter {
        font-size: 12px;
        padding: 6px 12px;
    }

    .course-materials-section {
        padding: 50px 0;
    }

    .password-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .password-container h2 {
        font-size: 20px;
    }

    .password-container p {
        font-size: 14px;
    }

    .materials-welcome h2 {
        font-size: 24px;
    }

    .materials-welcome p {
        font-size: 15px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 15px;
    }

    .material-category {
        padding: 20px 15px;
    }

    .material-item {
        padding: 12px 14px;
    }

    .schedule-list {
        gap: 15px;
    }

    .schedule-item {
        padding: 12px;
    }

    .schedule-date,
    .schedule-instructor {
        gap: 8px;
    }

    .faq-section {
        padding: 30px 0;
    }

    .faq-content {
        gap: 30px;
    }

    .faq-questions h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-item {
        border-radius: 8px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-toggle {
        font-size: 18px;
        width: 22px;
        height: 22px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 20px 15px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-top: 10px;
    }

    .faq-image img {
        height: 250px;
        border-radius: 10px;
    }

    .courses-section {
        padding: 50px 0;
    }

    .privacy-content {
        padding: 0 15px;
    }

    .privacy-intro {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .privacy-intro p {
        font-size: 15px;
    }

    .privacy-item {
        padding: 30px 20px;
    }

    .privacy-item h2 {
        font-size: 22px;
    }

    .privacy-item h3 {
        font-size: 16px;
        margin: 20px 0 12px 0;
    }

    .privacy-item p,
    .privacy-item li {
        font-size: 15px;
    }

    .contact-details {
        padding: 20px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .privacy-section {
        padding: 40px 0;
    }

    .privacy-intro {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .privacy-item {
        padding: 25px 15px;
    }

    .privacy-item h2 {
        font-size: 20px;
    }

    .privacy-item h3 {
        font-size: 15px;
    }

    .privacy-item p,
    .privacy-item li {
        font-size: 14px;
    }

    /* Webinars Mobile Styles */
    .webinars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .webinars-section {
        padding: 40px 0;
    }

    .webinars-intro {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .webinars-intro p {
        font-size: 16px;
    }
}

