/* Reset and Base Styles */

/* decorative font, About page */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0052A5;
    --primary-red: #DC143C;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #555555;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffe8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 10px;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-top: -10px;
  margin-bottom: -10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.btn-payment {
  background-color: #0029a6;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-payment:hover {
  background-color: #d60000;
  color: #fff !important;
}


.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: url('./assets/images/KNAA\ backdrop.png') center/cover no-repeat;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,82,165,0.85);
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #B01030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background: var(--light-gray);
}

/* dots */
#sliderDots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #c8102e;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.mission-icon svg {
    width: 50px;
    height: 50px;
}

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.service-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-gray);
}

/* Featured Event Section */
.featured-event {
    padding: 4rem 0;
    background: var(--light-gray);
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.event-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.event-details {
    margin: 1.5rem 0;
}

.event-details p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.event-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.event-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000514;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0;
}

.social-links a:hover {
    background: var(--primary-red);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: rgba(255,255,255,0.8);
    transition: fill 0.3s;
}

.social-links a:hover svg {
    fill: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .mission-section,
    .services-section,
    .featured-event,
    .cta-section {
        padding: 3rem 0;
    }

    .mission-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-text h2 {
        font-size: 2rem;
    }

    .event-details p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0.8rem 20px;
    }

    .mission-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon svg {
        width: 25px;
        height: 25px;
    }

    .event-text h2 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.7rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

/* About Page */

/* President's Message Section */
.president-message {
    padding: 4rem 0;
    background: var(--white);
}

.message-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 400;
}

.message-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.president-image {
    position: sticky;
    top: 100px;
}

.president-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.president-name {
    text-align: center;
}

.president-name h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.president-name p {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
}

.message-text {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
}

.message-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0,82,165,0.2);
    font-style: italic;
    color: var(--text-gray);
}

.message-signature strong {
    color: var(--primary-blue);
    font-style: normal;
}

/* Philosophy Section */
.philosophy-section {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 5px solid var(--primary-blue);
}

.philosophy-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* University Partnership Section */
.partnership-section {
    padding: 4rem 0;
    background: var(--white);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.partnership-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.partnership-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.partnership-benefits {
    margin: 2rem 0;
}

.partnership-benefit {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.partnership-benefit svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.partnership-benefit span {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.partnership-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.partnership-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partnership-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: normal;
}

/* Page Header */
.page-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    background: url('./assets/images/KNAA\ backdrop.png') center/cover no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 44, 0.7);
    z-index: 1;
}


.page-header h1 {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.page-header p {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

/* About Content Section */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.about-icon svg {
    width: 30px;
    height: 30px;
}

.about-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.about-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.about-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Core Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s;
    position: relative;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
}

.value-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(0,82,165,0.15);
    margin-bottom: 0.5rem;
}

.value-item h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* What We Do Section */
.what-we-do-section {
    padding: 4rem 0;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.what-we-do-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.what-we-do-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.wwd-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.wwd-icon svg {
    width: 30px;
    height: 30px;
}

.wwd-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.wwd-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.what-we-do-item h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.what-we-do-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Membership Benefits Section */
.membership-benefits {
    padding: 4rem 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 8px 25px rgba(0,82,165,0.2);
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .president-message,
    .about-content,
    .values-section,
    .what-we-do-section,
    .partnership-section,
    .membership-benefits {
        padding: 3rem 0;
    }

    .message-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .president-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .president-image img {
        height: 300px;
    }

    .message-text {
        padding: 1.5rem;
    }

    .message-text p {
        font-size: 1rem;
    }

    .about-intro h2,
    .philosophy-section h2 {
        font-size: 1.8rem;
        padding: 0;
    }

    .about-intro p,
    .philosophy-section p {
        font-size: 1rem;
        padding: 0;
    }

    .philosophy-section {
        padding: 1.5rem;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-text h3 {
        font-size: 1.5rem;
    }

    .about-grid,
    .values-grid,
    .what-we-do-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card,
    .value-item,
    .what-we-do-item,
    .benefit-card {
        padding: 1.5rem;
    }

    .about-card h3,
    .value-item h3,
    .what-we-do-item h3,
    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .value-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.7rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .message-title {
        font-size: 2rem;
    }

    .president-image {
        max-width: 250px;
    }

    .president-image img {
        height: 250px;
    }

    .president-name h4 {
        font-size: 1.1rem;
    }

    .president-name p {
        font-size: 0.9rem;
    }

    .message-text {
        padding: 1.2rem;
    }

    .about-intro h2,
    .philosophy-section h2 {
        font-size: 1.6rem;
    }

    .partnership-text h3 {
        font-size: 1.3rem;
    }

    .about-icon,
    .wwd-icon {
        width: 50px;
        height: 50px;
    }

    .about-icon svg,
    .wwd-icon svg {
        width: 25px;
        height: 25px;
    }

    .partnership-benefit {
        padding: 0.6rem;
    }

    .partnership-benefit svg {
        width: 20px;
        height: 20px;
    }

    .partnership-benefit span {
        font-size: 0.95rem;
    }
}

/* Leadership Page Styles */

.leadership-section {
    padding: 4rem 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.leader-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.05);
}

.leader-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.leader-credentials {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.leader-title {
    font-size: 1.05rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.leader-bio {
    flex: 1;
}

.leader-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Leadership Page */
@media (max-width: 968px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .leader-image-wrapper {
        height: 280px;
    }

    .leader-info {
        padding: 1.5rem;
    }

    .leader-info h3 {
        font-size: 1.3rem;
    }

    .leader-credentials {
        font-size: 0.9rem;
    }

    .leader-title {
        font-size: 1rem;
    }

    .leader-bio p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 3rem 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leader-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .leader-image-wrapper {
        height: 320px;
    }

    .leader-info h3 {
        font-size: 1.4rem;
    }

    .leader-credentials {
        font-size: 0.95rem;
    }

    .leader-title {
        font-size: 1.05rem;
    }

    .leader-bio p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .leader-image-wrapper {
        height: 280px;
    }

    .leader-info {
        padding: 1.2rem;
    }

    .leader-info h3 {
        font-size: 1.2rem;
    }

    .leader-credentials {
        font-size: 0.85rem;
    }

    .leader-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .leader-bio p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

/* Events Page */

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background: var(--white);
}

.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.calendar-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.calendar-nav {
    background: none;
    border: 2px solid var(--primary-blue);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-nav:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.calendar-nav svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.calendar-nav:hover svg {
    color: var(--white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: var(--light-gray);
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day.today {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.event-day {
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.event-day.today {
    background: var(--primary-red);
    border: 2px solid var(--primary-blue);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-color.today {
    background: var(--primary-blue);
}

.legend-color.event {
    background: var(--primary-red);
}

.legend-item span:last-child {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,82,165,0.2);
}

.event-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    transition: transform 0.3s;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.date-day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.event-card-content {
    padding: 2rem;
}

.event-card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.event-meta {
    margin-bottom: 1.5rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.event-time svg,
.event-location svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.event-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Past Events Section */
.past-events-section {
    padding: 4rem 0;
    background: var(--white);
}

.past-event-block {
    margin-bottom: 4rem;
}

.past-event-block:last-child {
    margin-bottom: 0;
}

.past-event-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.past-event-date {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.past-event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,82,165,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design for Events Page */
@media (max-width: 968px) {
    .events-grid {
        grid-template-columns: 1fr;  /* Single column on tablets and below */
    }
    
    .event-card-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .calendar-section,
    .upcoming-events-section,
    .past-events-section {
        padding: 3rem 0;
    }

    .calendar-container {
        padding: 1.5rem;
    }

    .calendar-header h3 {
        font-size: 1.3rem;
    }

    .calendar-nav {
        width: 35px;
        height: 35px;
    }

    .calendar-weekdays div {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    .calendar-legend {
        gap: 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card-image {
        height: 300px;
    }

    .event-card-content {
        padding: 1.5rem;
    }

    .event-card-content h3 {
        font-size: 1.3rem;
    }

    .past-event-title {
        font-size: 1.6rem;
    }

    .past-event-date {
        font-size: 1rem;
    }

    .past-event-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .past-event-block {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .calendar-container {
        padding: 1rem;
    }

    .calendar-header h3 {
        font-size: 1.1rem;
    }

    .calendar-nav {
        width: 30px;
        height: 30px;
    }

    .calendar-nav svg {
        width: 16px;
        height: 16px;
    }

    .calendar-weekdays div {
        font-size: 0.75rem;
    }

    .calendar-day {
        font-size: 0.8rem;
    }

    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .event-date-badge {
        width: 50px;
        height: 50px;
    }

    .date-day {
        font-size: 1.2rem;
    }

    .date-month {
        font-size: 0.75rem;
    }

    .event-card-content {
        padding: 1.2rem;
    }

    .event-card-content h3 {
        font-size: 1.2rem;
    }

    .past-event-title {
        font-size: 1.4rem;
    }

    .past-event-gallery {
        grid-template-columns: 1fr;
    }
}

/* Contact Page*/

/* Membership CTA Section */
.membership-cta-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.membership-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.membership-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.membership-cta-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.membership-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.membership-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.membership-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,82,165,0.2);
}

.membership-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,82,165,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.membership-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-blue);
}

.membership-details {
    text-align: left;
}

.membership-details h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.membership-details a {
    font-size: 1rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.membership-details a:hover {
    color: var(--primary-blue);
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-info-icon svg {
    width: 40px;
    height: 40px;
}

.contact-info-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.contact-info-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-info-card a {
    font-size: 1.1rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .membership-cta-section,
    .contact-info-section,
    .faq-section {
        padding: 3rem 0;
    }

    .membership-cta-content h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .membership-cta-content > p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .membership-contact-options {
        grid-template-columns: 1fr;
    }

    .membership-option {
        flex-direction: column;
        text-align: center;
    }

    .membership-details {
        text-align: center;
    }

    .contact-info-grid {
        gap: 1.5rem;
    }

    .faq-grid {
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .membership-cta-content h2 {
        font-size: 1.7rem;
    }

    .membership-option {
        padding: 1.5rem;
    }

    .membership-icon {
        width: 50px;
        height: 50px;
    }

    .membership-icon svg {
        width: 25px;
        height: 25px;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
    }

    .contact-info-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Payments Page */

/* Payment Options Section */
.payment-options-section {
    padding: 4rem 0;
    background: var(--white);
}

.payment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.payment-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.payment-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.payment-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.payment-card.featured-card {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0,82,165,0.1);
}

.payment-card-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.payment-icon svg {
    width: 35px;
    height: 35px;
}

.payment-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.payment-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.payment-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.payment-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.payment-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.donate-button-container {
    margin-top: 2rem;
    text-align: center;
}

.payment-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

/* Payment Types Section */
.payment-types-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.payment-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.payment-type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.payment-type-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.type-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.type-icon svg {
    width: 30px;
    height: 30px;
}

.type-icon.blue {
    background: rgba(0,82,165,0.1);
    color: var(--primary-blue);
}

.type-icon.red {
    background: rgba(220,20,60,0.1);
    color: var(--primary-red);
}

.payment-type-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.payment-type-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Payment Impact Section */
.payment-impact-section {
    padding: 4rem 0;
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.impact-card:hover {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0,82,165,0.15);
    transform: translateY(-5px);
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.impact-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.impact-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Responsive Design for Payments Page */
@media (max-width: 768px) {
    .payment-options-section,
    .payment-types-section,
    .payment-impact-section {
        padding: 3rem 0;
    }

    .payment-intro h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .payment-intro p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .payment-card h3 {
        font-size: 1.4rem;
    }

    .featured-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }

    .payment-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .payment-intro h2 {
        font-size: 1.7rem;
    }

    .payment-card {
        padding: 1.2rem;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
    }

    .payment-icon svg {
        width: 30px;
        height: 30px;
    }

    .payment-card h3 {
        font-size: 1.3rem;
    }

    .type-icon {
        width: 50px;
        height: 50px;
    }

    .type-icon svg {
        width: 25px;
        height: 25px;
    }

    .payment-type-card h3 {
        font-size: 1.2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-number {
        font-size: 2.2rem;
    }

    .impact-card h4 {
        font-size: 1.1rem;
    }
}

/*Chapters-leadership*/
.chapters-grid-section {
    padding: 60px 0;
}

.chapters-title {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.chapters-2x2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.chapter-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.chapter-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.chapter-box h3 {
    font-size: 20px;
    color: #005b7f;
    margin-bottom: 6px;
}

.chapter-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/*lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
    user-select: none;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-arrow:hover {
    color: #ccc;
}

.lightbox-arrow.prev {
    left: 20px;
}

.lightbox-arrow.next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

.gallery-item {
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        font-size: 40px;
        padding: 10px;
    }
    
    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
    
    .lightbox-counter {
        font-size: 14px;
        bottom: 10px;
    }
}
