/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: "Montserrat", sans-serif;

}

body {
  font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}
html {
    scroll-padding-top: 80px; /* Adjust to match your navbar height */
}
@font-face {
  font-family: "Babel";
  src: url("/src/assets/fonts/BabelSans-BoldOblique.wofff") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Babel";
  src: url("/src/assets/fonts/BabelSans-Oblique.woff") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 3s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hide main content until loaded */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.show {
    opacity: 1;
}

/* Responsive preloader */
@media screen and (max-width: 768px) {
    .preloader-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .preloader-spinner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
}

/* Scroll Animations */
.animate-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for different sections */

.Location.animate-hidden {
    transform: translateY(60px);
}

.panelist-container.animate-hidden {
    transform: translateY(60px);
}

.faq-container.animate-hidden {
    transform: translateY(60px);
}

.partners.animate-hidden {
    transform: translateY(60px);
}

.footer.animate-hidden {
    transform: translateY(60px);
}

/* Hero section elements animation */
.hero-animate-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for hero elements */
.top.hero-animate-hidden {
    transition-delay: 0.2s;
}

.bottom.hero-animate-hidden {
    transition-delay: 0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hide main content until loaded */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.show {
    opacity: 1;
}

.btn-volunteer {
    background-color: #014421;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-family: "Montserrat", sans-serif;
    border-radius: 4px;
    cursor: pointer;
}

.btn-volunteer:hover {
    background-color: #026234;
    color: white;
}

.btn-donate {
    border: 2px solid #014421;
    background: none;
    color: #014421;
    font-family: "Montserrat", sans-serif;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-donate:hover {
    background-color: #014421;
    color: white;
}

.register-btn {
    background-color: #014421;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 90, 61, 0.4);
    background: linear-gradient(135deg, #1a4028 0%, #2d5a3d 100%);
}

.register-btn:active {
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #fff;
    padding: 0 5%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand:hover {
    cursor: pointer;
}
.navbar-nav .nav-link {
    color: black;
    font-size: 1rem;
    padding: 0.5rem;
    font-family: "Montserrat", sans-serif;

    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #014421;
    font-weight: bold;
}

.dropdown-menu a {
    font-size: 15px;
    color: black;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-item:hover,
.dropdown-item:focus {
    color: #025836 !important;
    font-weight: bolder;
    background-color: transparent !important;
}

.dropdown-item:active {
    color: #025836 !important;
    background-color: rgba(2, 88, 54, 0.1) !important;
}

.logo-img {
    height: 55px;
    width: 200px;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background: #025836;
    font-family: "Montserrat", sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.time-unit {
    text-align: center;
    position: relative;
}

.time-value {
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 20px;
    border-radius: 15px;
    font-family: "Montserrat", sans-serif;
    min-width: 30px;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.time-label {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    text-transform: capitalize;
    opacity: 0.9;
}

.separator {
    color: white;
    font-size: 36px;
    font-weight: 300;
    margin: -30px 0 0 5px;
    opacity: 0.8;
}

.countdown-container .time-unit:last-child .separator {
    display: none;
}

#hero {
    padding: 60px 5%;
    background-image: url(assets/RISE\ UP\ PATRIOTS\ CONFERENCE\ BACKGROUND.png);
    background-position: center;
    background-size: cover;
}

.top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1300px;
    margin: auto;
}

.theme {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-image,
.theme-image {
    width: 450px;
    
}

.speakers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.speaker {
    height: 400px;
}

.bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px 0;
}

.date-time-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    background-color: white;
    font-family: "Babel", sans-serif;
}

.date-time-loc span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(12px, 3vw, 18px);
    font-weight: bold;
    color: #025836;
}

.date-time-loc span img {
  width: clamp(14px, 2vw, 30px);
  height: auto;
  display: block;
  object-fit: contain;
}


.date-time-loc span p {
    margin-top: 10px;
}

#hero .buttons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #025836;
    gap: 20px;
    padding: 20px;
    width: 45%;
}

.hero-btn-1,
.hero-btn-2 {
    border: none;
    padding: 0.7rem 2rem;
    cursor: pointer;
    flex: 1;
    font-weight: bold;
}

.hero-btn-1 {
    background-color: white;
    color: #025836;
    border-radius: 2px;
}

.hero-btn-2 {
    background: none;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
}

.play {
    border: 2px solid white;
    border-radius: 6px;
    padding: 2px 5px;
    margin-left: 2px;
}
/* Video Modal Overlay */
.video-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Modal Content */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.95);
  animation: scaleIn 0.3s ease forwards;
}

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

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

/* Close Button */
.video-close {
  position: absolute;
  top: 12px;   /* close to the top edge */
  right: 12px; /* close to the right edge */
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}



/* Animations */
@keyframes fadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.85); }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0.8; }
  to { transform: scale(1); opacity: 1; }
}




/* Mobile Responsiveness - Targets screens smaller than tablets */

@media screen and (max-width: 1024px) {

    .title-image,
    .theme-image {
        width: 400px;
    }

    .speaker {
        height: 230px;
    }

    .hero-btn-1,
    .hero-btn-2 {
        padding: 0.5rem 1rem;
        font-size: 12px;
        width: 100%;
    }
}

@media screen and (max-width: 858px) {

    .top {
        flex-direction: column;
        gap: 20px;
    }

    .bottom {
        flex-direction: column;
        gap: 20px;
    }

    #hero .buttons {
        width: 100%;
        gap: 15px;
    }

    /* Responsive images */
    .title-image,
    .theme-image {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

    .speaker {
        height: 310px;
        width: 90%;
    }

    /* Responsive text */
    .date-time-loc {
        padding: 5px 5px 5px 10px;
        gap: 5px;
        flex-direction: column;
    }

    .date-time-loc span {
        gap: 8px;
    }

    .date-time-loc span {
        font-size: clamp(10px, 2.5vw, 14px);
    }

    .date-time-loc span img {
        width: clamp(16px, 2.5vw, 35px);
    }

    .hero-btn-1,
    .hero-btn-2 {
        padding: 0.5rem 1rem;
        font-size: clamp(10px, 2vw, 14px);
        width: 100%;
    }
}

/* ===== ABOUT SECTION ===== */
.about-container {
    margin: 0 auto;
    background: #F1FFEF;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-header {
    color: white;
    padding: 40px;
    text-align: center;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #025836;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px 40px 40px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image-section {
    order: 1;
}

.about-main-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    background: #f0f0f0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-main-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.about-placeholder-text {
    color: #888;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

.about-thumbnail-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.about-thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-thumbnail:hover {
    transform: scale(1.05);
    border-color: #2d5a3d;
    box-shadow: 0 10px 20px rgba(45, 90, 61, 0.3);
}

.about-thumbnail.active {
    border-color: #2d5a3d;
    box-shadow: 0 5px 15px rgba(45, 90, 61, 0.4);
}

.about-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-thumbnail-placeholder {
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
}

.about-text-section {
    order: 2;
}

.about-text-content {
    line-height: 1.8;
    color: #333;
}

.about-text-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

.theme-text {
    font-weight: 600;
    color: #2d5a3d;
}

.Location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 5%;
    text-align: center;
}

.location-header {
    font-weight: 700;
    margin-bottom: 10px;
    color: #025836;

}

.location-image img {
    width: 100%;
    max-width: 887px;
    height: auto;
}

.location-name {
    color: #025836;
    font-size: 32px;
    margin-top: 10px;
}


/* ===== PANELIST SECTION ===== */
.panelist-container {
    background-color: #025836;
    padding: 60px 5%;
}

.panelist-title {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.panelist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.panelist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.panelist-item:hover {
    transform: translateY(-10px);
}

.panelist-photo {
    width: 90%;
    aspect-ratio: 4/5;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.panelist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

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

.panelist-item:hover .panelist-photo {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.panelist-name {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.panelist-item:hover .panelist-name {
    color: #90EE90;
    transform: scale(1.05);
}

.empty-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.panelist-item:hover .empty-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 5%;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 2px solid #2d5a3d;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2d5a3d;
    text-align: left;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
}

.faq-question:focus {
    outline: none;
}

.plus-icon {
    font-size: 28px;
    font-weight: 300;
    color: #2d5a3d;
    transition: transform 0.3s ease;
    min-width: 28px;
    text-align: center;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
    color: #666;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    background-color: #d9d9d9;
    padding: 60px 5%;
    overflow-x: hidden;
}

.title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #025836;
    margin-bottom: 30px;
}

.partners .title p {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 30px;
}

.logo-carousel-wrapper {
    height: 100px;
    display: flex;
}

.logo-carousel {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}

.logo-carousel img {
    height: clamp(2rem, 4vw, 3rem);
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel-wrapper:hover .logo-carousel {
    animation-play-state: paused;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(rgba(0, 53, 30, 0.9), rgba(0, 53, 30, 0.9)),
        url("assets/URNI-eagle.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 20px 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 20px 0;
    margin: auto;
    border-bottom: 0.5px solid white;
    max-width: 1300px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.office-contact {
    line-height: 20px;
    margin: 30px 0 0 0;
}

.office-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: white;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: flex-start;
    margin-left: 80px;
    padding-left: 40px;
}

.footer-nav-heading {
    margin: 0 0 10px 0;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

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

.footer-nav-links a:hover {
    color: #7dd87f;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: auto;
}

.footer-social .social-icons a:hover {
    color: #7dd87f;
}

.footer h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}

.volunteer-section {
    margin: 50px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.volunteer-btn {
    background-color: white;
    color: #004225;
    width: 12.2rem;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin: 5px 0;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.volunteer-btn:hover {
    background-color: #b1ffa8;
    color: black;
}

.volunteer-btn .arrow {
    width: 1.5rem;
    margin-left: 10px;
}

.footer-social .social-icons {
    margin: 0;
}

.footer-social .social-icons a {
    color: white;
    font-size: 25px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    font-size: 14px;
    padding-top: 10px;
    max-width: 1200px;
    margin: auto;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {

    .about-content,
    .footer-content {
        max-width: 1400px;
    }

    .panelist-grid {
        max-width: 1300px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .about-content {
        max-width: 1100px;
        gap: 30px;
    }

    .panelist-title {
        font-size: 48px;
    }
}

/* Tablet Large (768px - 991px) */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .panelist-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }

    .about-text-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet (768px - 850px) */
@media (max-width: 850px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        padding: 20px 0;
    }

    .office-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-nav {
        padding: 0;
        margin: 0;
        align-items: center;
    }

    .footer-nav-links {
        align-items: center;
    }

    .footer-social {
        padding: 0;
        margin: 0;
        align-items: center;
    }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 768px) {
    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
    }

    .time-value {
        font-size: 36px;
        padding: 15px 20px;
        min-width: 80px;
    }

    .separator {
        font-size: 28px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-header {
        padding: 30px 20px;
    }

    .about-content {
        padding: 20px;
    }

    .about-thumbnail-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .about-thumbnail {
        width: 100px;
        height: 70px;
    }

    .panelist-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .panelist-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .panelist-container {
        padding: 40px 5%;
    }

    .panelist-name {
        font-size: 16px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 18px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .plus-icon {
        font-size: 24px;
    }

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

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .time-value {
        font-size: 20px;
        padding: 10px;
        min-width: 60px;
    }

    .time-label {
        font-size: 14px;
    }

    .about-header h1 {
        font-size: 1.8rem;
    }

    .about-text-content p {
        font-size: 1rem;
    }

    .about-thumbnail {
        width: 90px;
        height: 60px;
    }

    .panelist-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .panelist-title {
        font-size: 28px;
    }

    .panelist-name {
        font-size: 14px;
        margin-top: 10px;
    }

    .faq-container {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-question {
        padding: 18px;
        font-size: 16px;
    }
}

/* Extra Small Mobile (max 320px) */
@media (max-width: 320px) {
    .navbar {
        padding: 0 3%;
    }

    .logo-img {
        height: 45px;
        width: 160px;
    }

    .time-value {
        font-size: 24px;
        padding: 8px 12px;
        min-width: 50px;
    }

    .panelist-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 24px;
    }

    .about-header h1 {
        font-size: 1.5rem;
    }
}