:root {
    --navy-blue: #1e3a5f;
    --golden-yellow: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.top-bar {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.top-bar:hover {
    background-color: #152a47;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--golden-yellow);
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    flex: 0 0 auto;
    margin-right: 0;
    padding: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Scale logo on hover for better UX */
.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-collapse {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    margin: 0 2px;
}

.navbar-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 0.95rem;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--golden-yellow);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
    margin-left: 20px;
}

.navbar-nav .nav-link:active {
    transform: translateY(0);
}

/* Dropdown Styles */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .navbar-nav .dropdown:hover>.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown:hover>.dropdown-toggle {
        color: var(--golden-yellow);
    }
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-menu {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2c5aa0 100%);
    border: 2px solid var(--golden-yellow);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 12px 24px rgba(30, 58, 95, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--white);
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--golden-yellow);
    border-left-color: var(--golden-yellow);
    padding-left: 23px;
}

.dropdown-item:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 10px 10px;
}

.navbar-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.btn-donate {
    background-color: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid var(--golden-yellow);
}

.btn-donate:hover {
    background-color: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        flex: 0 0 auto;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }

    .navbar-collapse {
        flex: 1 0 100%;
        order: 3;
        margin-top: 15px;
    }

    .navbar-nav {
        flex-direction: column;
        max-width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item {
        flex: none;
        width: 100%;
        margin: 2px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 2px 0;
        display: block;
        border-radius: 8px;
    }

    .navbar-actions {
        flex: 1 0 100%;
        order: 4;
        margin: 15px 0 0 0;
        justify-content: center;
    }

    .btn-donate {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 35px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .navbar-nav {
        max-width: 800px;
    }

    .logo-img {
        height: 50px;
    }
}

/* Animation for mobile menu */
.navbar-collapse.collapsing {
    transition: height 0.35s ease;
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.9)), url('images/OCT_2025/IMG_2291.JPG');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-title {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--golden-yellow);
    bottom: -10px;
    left: 0;
}

.about-section,
.mission-vision-section,
.sponsor-section {
    padding: 80px 0;
}

/* Bank Donation Section */
.bank-donation-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
    padding: 60px 0;
    border-top: 3px solid var(--golden-yellow);
    border-bottom: 3px solid var(--golden-yellow);
}

.bank-donation-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--golden-yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.bank-donation-header {
    text-align: center;
    margin-bottom: 30px;
}

.bank-donation-header h3 {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.bank-donation-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.bank-details {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.bank-detail-icon i {
    color: var(--navy-blue);
    font-size: 1.3rem;
}

.bank-detail-content {
    flex: 1;
}

.bank-detail-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-detail-value {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    word-break: break-all;
}

.bank-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--golden-yellow);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.bank-note p {
    color: var(--navy-blue);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.bank-note p i {
    color: var(--golden-yellow);
    margin-right: 8px;
}

/* Mobile Responsive for Bank Donation */
@media (max-width: 768px) {
    .bank-donation-section {
        padding: 40px 0;
    }

    .bank-donation-card {
        padding: 30px 20px;
    }

    .bank-donation-header h3 {
        font-size: 1.6rem;
    }

    .bank-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .bank-detail-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .bank-detail-value {
        font-size: 1.1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e6c12e, var(--golden-yellow));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.back-to-top:hover::before {
    opacity: 0.3;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Mobile Responsive for Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
}

/* Charity Registration Section */
.charity-registration-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 50px 0;
    border-top: 4px solid var(--golden-yellow);
    border-bottom: 4px solid var(--golden-yellow);
}

.charity-registration-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: var(--white);
    font-weight: 500;
}

.charity-number-link {
    color: var(--golden-yellow);
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.charity-number-link:hover {
    color: #e6c12e;
    text-decoration: none;
    transform: translateY(-1px);
}

.charity-commission-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.charity-commission-logo-link:hover {
    transform: scale(1.05);
}

.charity-commission-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.charity-commission-logo-link:hover .charity-commission-logo {
    filter: brightness(1.2);
}

/* Mobile Responsive for Charity Registration */
@media (max-width: 768px) {
    .charity-registration-section {
        padding: 40px 0;
    }

    .charity-registration-text {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .charity-commission-logo {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .charity-registration-text {
        font-size: 1rem;
    }

    .charity-commission-logo {
        max-width: 120px;
    }
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--navy-blue);
    padding: 20px;
    border-left: 5px solid var(--golden-yellow);
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 5px;
    margin-bottom: 25px !important;
}

.mission-vision-section {
    background-color: var(--light-gray);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.counter-section {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-yellow);
}

/* Carousel Styles */
.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    height: 500px;
    /* Fixed height for consistency */
}

.carousel-item {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the entire area */
    object-position: center;
    display: block;
}

/* Projects carousel specific styling for better image fit */
#projectsCarousel .carousel-inner {
    height: 550px;
}

#projectsCarousel .carousel-item {
    background: linear-gradient(135deg, #1e3a5e, #2c5282);
    height: 550px;
    padding: 10px;
    box-sizing: border-box;
}

#projectsCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    max-width: 100%;
    max-height: 100%;
}

.carousel-caption {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.7));
    border-radius: 10px;
    padding: 25px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
}

.carousel-caption h5 {
    color: var(--golden-yellow);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.carousel-caption p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 95, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
}

.carousel-indicators button.active {
    background-color: var(--golden-yellow);
    border-color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-inner {
        height: 400px;
    }

    #projectsCarousel .carousel-inner {
        height: 400px;
    }

    #projectsCarousel .carousel-item {
        height: 400px;
        padding: 8px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 15px;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .carousel-inner {
        height: 300px;
    }

    #projectsCarousel .carousel-inner {
        height: 300px;
    }

    #projectsCarousel .carousel-item {
        height: 300px;
        padding: 6px;
    }

    .carousel-caption {
        bottom: 10px;
        padding: 10px;
    }

    .carousel-caption h5 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }
}

.sponsor-card {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sponsor-highlight {
    color: var(--golden-yellow);
    font-weight: 700;
}

/* Footer Styles */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-mission {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links h5 {
    color: var(--golden-yellow);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--golden-yellow);
    transform: translateX(5px);
}

.footer-links p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-links i {
    color: var(--golden-yellow);
    margin-right: 10px;
    margin-top: 3px;
    min-width: 16px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin-right: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-icons a:nth-child(1):hover {
    /* Facebook */
    background-color: #1877f2;
}

.social-icons a:nth-child(2):hover {
    /* X/Twitter */
    background-color: #ed3333;
}

.social-icons a:nth-child(3):hover {
    /* Instagram */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:nth-child(4):hover {
    /* LinkedIn */
    background-color: #0077b5;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 40px;
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright p {
    margin-bottom: 8px;
}

.manager-info {
    margin-top: 8px;
    font-size: 0.85rem;
}

.manager-info a {
    color: var(--golden-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.manager-info a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 15px;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h5 {
        margin-bottom: 15px;
    }

    .copyright {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .social-icons {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .counter {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 40px;
    }


}


/* About Page Specific Styles */
.page-hero {
    background: linear-gradient(rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.8)), url('images/Students_in_Uniform/IMG_3514.JPG');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.journey-section {
    background-color: var(--light-gray);
}

/* Updated Team Section Styles */
.team-section {
    background-color: var(--white);
}

.team-category {
    margin-bottom: 80px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.team-member-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(30, 58, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.team-member-img-container {
    position: relative;
    margin: 0 auto 25px;
    width: 180px;
    height: 180px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(30, 58, 95, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-member-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--golden-yellow);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
    font-size: 4rem;
    color: var(--golden-yellow);
}

.team-member-img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 8px solid var(--golden-yellow);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), inset 0 0 0 2px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: block;
    margin: 0;
}

/* Specific styling for Board of Directors images - better fit within circles */
.board-directors .team-member-img-container {
    padding: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
}

.board-directors .team-member-img {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    max-width: calc(100% - 8px);
    max-height: calc(100% - 8px);
    object-fit: cover;
    object-position: center center;
    border: 4px solid var(--golden-yellow);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    box-sizing: border-box;
    margin: 0;
}

.team-member-card:hover .team-member-img {
    transform: scale(1.05);
    border-color: #e6c12e;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.team-member-name {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
}

.team-member-role {
    color: var(--golden-yellow);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-subtitle {
    color: #888;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
}

.team-member-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.team-member-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--golden-yellow);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.team-member-quote:before {
    content: '"';
    font-size: 3rem;
    color: var(--golden-yellow);
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.3;
    font-family: serif;
}

/* Enhanced category headers */
.team-category h3 {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.team-category h3:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--navy-blue));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .team-member-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .team-member-img-container {
        width: 150px;
        height: 150px;
    }

    .board-directors .team-member-img-container {
        padding: 6px;
    }

    .board-directors .team-member-img {
        width: calc(100% - 6px);
        height: calc(100% - 6px);
        max-width: calc(100% - 6px);
        max-height: calc(100% - 6px);
        border: 3px solid var(--golden-yellow);
    }

    .team-member-name {
        font-size: 1.3rem;
    }

    .team-member-role {
        font-size: 0.9rem;
    }

    .team-category h3 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .team-member-img-container {
        width: 140px;
        height: 140px;
    }

    .board-directors .team-member-img-container {
        padding: 5px;
    }

    .board-directors .team-member-img {
        width: calc(100% - 5px);
        height: calc(100% - 5px);
        max-width: calc(100% - 5px);
        max-height: calc(100% - 5px);
        border: 3px solid var(--golden-yellow);
    }

    .team-member-card {
        padding: 25px 20px;
    }

    .team-category h3 {
        font-size: 1.6rem;
    }

    .team-member-quote {
        padding: 15px;
        font-size: 0.85rem;
    }
}

/* Large screens enhancement */
@media (min-width: 1200px) {
    .team-member-img-container {
        width: 200px;
        height: 200px;
    }

    .team-member-card {
        padding: 45px 35px;
    }
}

.gallery-section {
    background-color: var(--light-gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
}

.cta-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--golden-yellow);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .cta-tagline {
        font-size: 1.6rem;
    }

    .team-member-card {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/* Clean Carousel without Text */
.gallery-section .carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-section .carousel-inner {
    height: 600px;
    /* Slightly taller for better image display */
}

.gallery-section .carousel-item {
    height: 100%;
}

.gallery-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Enhanced controls for better visibility */
.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 95, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 25px;
    transition: all 0.3s ease;
}

.gallery-section .carousel-control-prev:hover,
.gallery-section .carousel-control-next:hover {
    background: var(--navy-blue);
    transform: translateY(-50%) scale(1.1);
}

.gallery-section .carousel-indicators {
    bottom: 20px;
}

.gallery-section .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-section .carousel-indicators button.active {
    background-color: var(--golden-yellow);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-section .carousel-inner {
        height: 400px;
    }

    .gallery-section .carousel-control-prev,
    .gallery-section .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .gallery-section .carousel-inner {
        height: 300px;
    }

    .gallery-section .carousel-control-prev,
    .gallery-section .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}


/* Projects Page Specific Styles */
.projects-hero-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 100px 0;
}

.projects-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.projects-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.projects-hero-section img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.projects-overview-section {
    padding: 80px 0;
    background-color: var(--white);
}

.projects-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.projects-impact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.impact-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    font-size: 3rem;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.impact-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Projects Showcase Section */
.projects-showcase-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.projects-showcase-section .project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.projects-showcase-section .project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.projects-showcase-section .border-bottom {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.projects-showcase-section img {
    transition: transform 0.3s ease;
}

.projects-showcase-section:hover img {
    transform: scale(1.02);
}

.projects-cta-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy-blue);
    font-weight: 500;
    margin-bottom: 25px;
}

.projects-support-section {
    padding: 80px 0;
    background-color: var(--white);
}

.support-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: var(--white);
    border: 2px solid rgba(30, 58, 95, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    border-color: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--golden-yellow);
    margin-right: 20px;
    flex-shrink: 0;
}

.support-title h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.support-price {
    color: var(--golden-yellow);
    font-weight: 600;
    font-size: 1.1rem;
}

.support-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-support {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: var(--navy-blue);
}

.projects-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
}

.projects-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.btn-cta-primary {
    background-color: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .projects-hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .projects-hero-section h1 {
        font-size: 2.2rem;
    }

    .projects-hero-section .lead {
        font-size: 1.1rem;
    }

    .support-card-header {
        flex-direction: column;
        text-align: center;
    }

    .support-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .projects-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .projects-hero-section h1 {
        font-size: 1.8rem;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .support-card {
        padding: 25px 20px;
    }
}


/* Sponsor a Child Page Styles */
.sponsor-hero-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 100px 0;
}

.sponsor-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sponsor-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 30px;
}

.btn-hero-sponsor {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 35px;
    border: 3px solid var(--golden-yellow);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-align: center;
}

.btn-hero-sponsor:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--golden-yellow);
}

.sponsor-hero-section img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.sponsor-impact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.sponsor-impact-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 30px;
}

.impact-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-breakdown-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.sponsor-breakdown-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.breakdown-cards {
    max-width: 800px;
    margin: 0 auto;
}

.breakdown-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--golden-yellow);
    transition: all 0.3s ease;
}

.breakdown-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.breakdown-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.breakdown-icon {
    font-size: 2.5rem;
    color: var(--golden-yellow);
    margin-right: 20px;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.breakdown-info {
    flex: 1;
}

.breakdown-info h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.breakdown-amount {
    color: var(--golden-yellow);
    font-weight: 700;
    font-size: 1.4rem;
}

.breakdown-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.breakdown-summary {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.summary-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}

.sponsor-matters-section {
    padding: 80px 0;
    background-color: var(--white);
}

.sponsor-matters-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 30px;
}

.matters-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--golden-yellow);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 1.2rem;
    margin-top: 20px;
    line-height: 1.6;
}

.sponsor-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
}

.sponsor-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-action {
    margin-top: 40px;
}

.btn-cta-sponsor {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 35px;
    border: 3px solid var(--golden-yellow);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-cta-sponsor:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--golden-yellow);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sponsor-hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .sponsor-hero-section h1 {
        font-size: 2.2rem;
    }

    .sponsor-hero-section .lead {
        font-size: 1.1rem;
    }

    .btn-hero-sponsor {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .breakdown-header {
        flex-direction: column;
        text-align: center;
    }

    .breakdown-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .breakdown-card {
        padding: 25px 20px;
    }

    .btn-cta-sponsor {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .sponsor-cta-section h2 {
        font-size: 2rem;
    }

    .sponsor-impact-section h2,
    .sponsor-breakdown-section h2,
    .sponsor-matters-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .sponsor-hero-section h1 {
        font-size: 1.8rem;
    }

    .sponsor-hero-section .lead {
        font-size: 1rem;
    }

    .btn-hero-sponsor {
        font-size: 1rem;
        padding: 14px 25px;
    }

    .breakdown-card {
        padding: 20px 15px;
    }

    .breakdown-icon {
        font-size: 2rem;
    }

    .breakdown-info h4 {
        font-size: 1.1rem;
    }

    .breakdown-amount {
        font-size: 1.2rem;
    }

    .breakdown-description {
        font-size: 0.9rem;
    }

    .btn-cta-sponsor {
        font-size: 1rem;
        padding: 14px 25px;
    }

    .sponsor-cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .highlight-text {
        padding: 20px;
        font-size: 1.1rem;
    }

    .summary-text {
        font-size: 1.1rem;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .sponsor-hero-section h1 {
        font-size: 3.5rem;
    }

    .sponsor-hero-section .lead {
        font-size: 1.4rem;
    }

    .breakdown-card {
        padding: 35px 30px;
    }
}


/* Volunteer Page Styles */
.volunteer-hero-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 100px 0;
}

.volunteer-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.volunteer-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-volunteer {
    background: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-volunteer:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.btn-hero-fundraiser {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-fundraiser:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.volunteer-hero-section img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.inspiration-section {
    padding: 80px 0;
    background-color: var(--white);
}

.inspiration-header h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.inspiration-badge {
    margin-bottom: 30px;
}

.badge {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 0 5px;
    font-size: 0.9rem;
}

.inspiration-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

.inspiration-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.inspiration-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--golden-yellow);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

.inspiration-highlight p {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.quote-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    border-left: 5px solid var(--golden-yellow);
}

.quote-icon {
    font-size: 2rem;
    color: var(--golden-yellow);
    margin-bottom: 15px;
}

.quote-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy-blue);
    line-height: 1.6;
    margin-bottom: 10px;
}

.quote-card footer {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

.impact-statement {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.impact-statement p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.volunteer-gallery-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.volunteer-gallery-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.volunteer-gallery-section .carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.volunteer-gallery-section .carousel-inner {
    height: 500px;
}

.volunteer-gallery-section .carousel-item {
    height: 100%;
}

.volunteer-gallery-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.involvement-section {
    padding: 80px 0;
    background-color: var(--white);
}

.involvement-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.involvement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--golden-yellow);
}

.involvement-icon {
    font-size: 3rem;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.involvement-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.involvement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-involvement {
    background: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-involvement:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.volunteer-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
}

.volunteer-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.btn-cta-volunteer {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 35px;
    border: 3px solid var(--golden-yellow);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-cta-volunteer:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    border-color: var(--golden-yellow);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .volunteer-hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .volunteer-hero-section h1 {
        font-size: 2.2rem;
    }

    .volunteer-hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-hero-volunteer,
    .btn-hero-fundraiser {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .inspiration-header h2 {
        font-size: 1.8rem;
    }

    .inspiration-lead {
        font-size: 1.1rem;
    }

    .inspiration-content p {
        font-size: 1rem;
    }

    .volunteer-gallery-section .carousel-inner {
        height: 400px;
    }

    .involvement-card {
        padding: 30px 20px;
    }

    .btn-cta-volunteer {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .volunteer-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .volunteer-hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-volunteer,
    .btn-hero-fundraiser {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .badge {
        display: block;
        margin: 5px 0;
        width: 100%;
    }

    .inspiration-highlight {
        padding: 20px;
    }

    .inspiration-highlight p {
        font-size: 1.1rem;
    }

    .quote-card {
        padding: 20px;
    }

    .volunteer-gallery-section .carousel-inner {
        height: 300px;
    }

    .btn-cta-volunteer {
        font-size: 1rem;
        padding: 14px 25px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    padding: 100px 0;
}

.contact-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-contact {
    background: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-contact:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.btn-hero-donate {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-donate:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.contact-hero-section img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.contact-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--golden-yellow);
    border-color: var(--golden-yellow);
}

.btn-submit {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-map-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}

.address-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.address-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-links-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-links-section h2 {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 50px;
}

.link-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--golden-yellow);
}

.link-icon {
    font-size: 3rem;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.link-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.link-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-link {
    background: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-link:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-donate {
    background: var(--golden-yellow);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-donate:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
}

.btn-cta-sponsor {
    background: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-sponsor:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .contact-hero-section h1 {
        font-size: 2.2rem;
    }

    .contact-hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-hero-contact,
    .btn-hero-donate {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-form-section h2,
    .contact-map-section h2,
    .contact-links-section h2 {
        font-size: 1.8rem;
    }

    .link-card {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-donate,
    .btn-cta-sponsor {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-contact,
    .btn-hero-donate {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .link-card {
        padding: 25px 20px;
    }

    .link-icon {
        font-size: 2.5rem;
    }
}

/* Volunteer Page Story Section Styles */
.story-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.story-section:nth-child(even) {
    background-color: var(--light-gray);
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-quote-highlight {
    border-left: 4px solid var(--golden-yellow);
    background: rgba(212, 175, 55, 0.08);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #444;
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
}

.story-quote-highlight .fa-quote-left {
    color: var(--golden-yellow);
    opacity: 0.3;
    margin-right: 8px;
}

.story-quote-highlight .fa-quote-right {
    color: var(--golden-yellow);
    opacity: 0.3;
    margin-left: 8px;
}

.story-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.story-personal-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--golden-yellow);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
}

.story-personal-quote p {
    margin-bottom: 15px;
}

.story-personal-quote strong {
    color: var(--navy-blue);
    font-style: normal;
    font-weight: 700;
}

.btn-story-cta {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 30px;
    border: 2px solid var(--golden-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.btn-story-cta:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Story Section Image Styling */
.story-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.story-section:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {

    .story-section .order-lg-1,
    .story-section .order-lg-2 {
        order: auto !important;
    }
}

/* Volunteer Page CTA Statistics Section */
.cta-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 30px 20px;
}

.stat-item h4 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 12px;
    line-height: 1.2;
}

.stat-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

/* Hero Tagline Styling */
.hero-tagline {
    font-size: 1.15rem;
    color: #666;
    margin-top: 20px;
    font-weight: 500;
    line-height: 1.6;
}

/* Main CTA Button for Volunteer Page */
.btn-cta-volunteer {
    background: linear-gradient(135deg, var(--golden-yellow), #e6c12e);
    color: var(--navy-blue);
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 35px;
    border: 3px solid var(--golden-yellow);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    min-width: 280px;
    justify-content: center;
}

.btn-cta-volunteer:hover {
    background: transparent;
    color: var(--golden-yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--golden-yellow);
}

/* Volunteer Final CTA Section */
.volunteer-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), #2c5282);
    color: var(--white);
    text-align: center;
}

.volunteer-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.volunteer-final-cta .lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Mobile Responsive for Story Sections */
@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-quote-highlight {
        font-size: 1.1rem;
        padding: 20px;
    }

    .story-content {
        font-size: 1rem;
    }

    .story-personal-quote {
        font-size: 1rem;
        padding: 20px;
    }

    .cta-stats {
        gap: 20px;
        margin: 40px 0;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h4 {
        font-size: 2.2rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    .btn-story-cta {
        padding: 11px 30px;
        font-size: 0.95rem;
    }

    .btn-cta-volunteer {
        padding: 14px 35px;
        font-size: 1.05rem;
        min-width: 250px;
    }

    .volunteer-final-cta h2 {
        font-size: 2rem;
    }

    .volunteer-final-cta .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .story-section {
        padding: 40px 0;
    }

    .story-title {
        font-size: 1.7rem;
    }

    .story-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .story-quote-highlight {
        font-size: 1rem;
        padding: 15px;
        margin-bottom: 20px;
    }

    .story-content {
        font-size: 0.95rem;
    }

    .story-personal-quote {
        font-size: 0.95rem;
        padding: 15px;
    }

    .cta-stats {
        gap: 15px;
        margin: 30px 0;
        display: block;
    }

    .stat-item {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .stat-item h4 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .btn-story-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-cta-volunteer {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: auto;
        width: 100%;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .volunteer-final-cta h2 {
        font-size: 1.6rem;
    }

    .volunteer-final-cta .lead {
        font-size: 0.95rem;
    }
}

/* Cookie Consent Popup Styles */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-consent-overlay.show {
    display: block;
    opacity: 1;
}

.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.cookie-consent-popup.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-consent-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--navy-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: var(--golden-yellow);
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background-color: var(--navy-blue);
    color: var(--white);
}

.cookie-consent-btn-accept:hover {
    background-color: #152a47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.cookie-consent-btn-reject {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.cookie-consent-btn-reject:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 20px 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 140px;
    }

    .cookie-consent-text h4 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }
}