
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
         :root {
            --primary-red: #CC3634;
            --primary-red-dark: #a82c2a;
            --primary-red-light: #e04543;
            --dark-gray: #575656;
            --light-gray: #B2B2B2;
            --off-white: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: var(--dark-gray);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 17px;
        }
        
        p {
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .lead {
            font-size: 18px;
            line-height: 1.7;
            font-weight: 400;
        }
        /* Consistent font sizes for all content areas */
        
        .partner-card p,
        .center-feature p,
        .what-card p,
        .project-content p,
        .value-card p,
        .timeline-item p,
        .project-card p,
        .get-involved-intro p,
        .what-we-do-intro p,
        .involvement-compact-content p,
        .info-card p,
        .info-card li,
        .about-section p,
        .contact-left-box p,
        .contact-right-box p {
            font-size: 17px !important;
            line-height: 1.7;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        /* Navbar Styles */
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }
        
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: color 0.3s ease;
        }
        
        a.nav-link.btn-register {
            color: #fff !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }
        
        .navbar-nav .nav-link:hover::after {
            transform: scaleX(1);
        }
        
        .btn-register {
            background: var(--primary-red);
            color: white !important;
            padding: 0.6rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .btn-register:hover {
            background: var(--primary-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(204, 54, 52, 0.4);
        }
        
        .btn-register::after {
            display: none !important;
        }
        /* Hero Section */
        
        .hero-section {
            min-height: 83vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.97) 0%, rgba(87, 86, 86, 0.44) 100%);
            z-index: -1;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(204, 54, 52, 0.2);
            border: 1px solid rgba(204, 54, 52, 0.5);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.5;
            }
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 1rem;
        }
        
        .hero-title .text-highlight {
            color: var(--primary-red);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .hero-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .hero-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(204, 54, 52, 0.2);
            border: 1px solid rgb(204, 54, 52);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 1.3rem;
        }
        
        .hero-info-text span {
            display: block;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-info-text strong {
            color: white;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .btn-hero-primary {
            background: var(--primary-red);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-hero-primary:hover {
            background: var(--primary-red-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(204, 54, 52, 0.5);
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid white;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-hero-secondary:hover {
            background: white;
            color: var(--dark-gray);
            transform: translateY(-3px);
        }
        /* Section Styles */
        
        .section-tag {
            display: inline-block;
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary-red);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }
        
        .section-title .text-accent {
            color: var(--primary-red);
        }
        /* About Section */
        
        .about-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: white;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(204, 54, 52, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image-wrapper img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            width: 100%;
            height: auto;
        }
        
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-red);
            border-radius: 20px;
            z-index: -1;
        }
        
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: var(--off-white);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* Three Column Cards */
        
        .info-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .info-card-icon {
            width: 70px;
            height: 70px;
            background: rgba(204, 54, 52, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-red);
            font-size: 1.8rem;
        }
        
        .info-card h3 {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }
        
        .info-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .info-card li {
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--dark-gray);
            font-size: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .info-card li:last-child {
            border-bottom: none;
        }
        
        .info-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--primary-red);
            border-radius: 50%;
        }
        
        .info-card li strong {
            color: var(--primary-red);
            font-weight: 700;
        }
        /* What We Do Section */
        
        .what-we-do-section {
            padding: 80px 0;
            background: linear-gradient(180deg, white 0%, var(--off-white) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .what-we-do-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(204, 54, 52, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .what-we-do-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .what-we-do-intro p {
            font-size: 1.15rem;
            color: var(--dark-gray);
            margin-bottom: 0;
        }
        
        .what-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .what-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .what-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .what-card:hover::before {
            transform: scaleX(1);
        }
        
        .what-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(204, 54, 52, 0.1);
        }
        
        .what-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.1) 0%, rgba(204, 54, 52, 0.05) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-red);
            font-size: 2.2rem;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .what-card:hover .what-card-icon {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        
        .what-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .what-card p {
            color: var(--dark-gray);
            margin: 0;
            line-height: 1.7;
            font-size: 16px;
        }
        
        .what-card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: rgba(204, 54, 52, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--primary-red);
            font-family: 'Montserrat', sans-serif;
        }
        /* Values Section */
        
        .values-section {
            padding: 80px 0;
            background: #1e1d1d;
            color: white;
        }
        
        .values-section .section-title {
            color: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .value-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        .value-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        /* Projects Section */
        
        .projects-section {
            padding: 80px 0;
            background: white;
        }
        
        .project-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }
        
        .project-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-content h3 {
            font-size: 1.3rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        /* Partners Section */
        
        .partners-section {
			padding: 80px 0;
			background: var(--off-white);
		}

		.partner-card {
			background: white;
			padding: 40px 30px;
			text-align: center;
			border-radius: 16px;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
			height: 100%;
			transition: all 0.3s ease;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.partner-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		}

		.partner-logo {
			width: 100%;
			height: 120px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 25px;
		}

		.partner-logo img {
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
		}

		.partner-card h4 {
			font-size: 1.4rem;
			color: var(--primary-red);
			margin-bottom: 15px;
		}

		.partner-card p {
			color: #666;
			line-height: 1.6;
		}
        /* Team Section */
        
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .team-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(204, 54, 52, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 0px;
            padding: 35px 25px;
            background: white;
            border-radius: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .team-member:hover::before {
            transform: scaleX(1);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(204, 54, 52, 0.15);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-gray));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .team-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 25px;
            display: block;
            object-fit: cover;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border: 5px solid var(--primary-red);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .team-member:hover .team-photo {
            transform: scale(1.08);
            box-shadow: 0 12px 35px rgba(204, 54, 52, 0.35);
            border-color: var(--primary-red-dark);
        }
        
        .team-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }
        
        .team-role {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .team-location {
            font-size: 14px;
            color: var(--light-gray);
            line-height: 1.5;
        }
        /* Center Section */
        
        .center-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-red), #8b2422);
            color: white;
        }
        
        .center-section .section-title {
            color: white;
        }
        
        .center-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .center-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }
        
        .center-feature i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .center-feature h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        /* Events Section */
        
        .events-section {
            padding: 80px 0;
            background: var(--off-white);
        }
        
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline-item {
            padding: 25px;
            background: white;
            border-radius: 16px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--primary-red);
        }
        
        .timeline-item h4 {
            color: var(--primary-red);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .timeline-item .year {
            color: var(--light-gray);
            font-weight: 600;
            margin-bottom: 10px;
        }
		
		/*donation*/
		/* Sponsor & Donate Card - Prominent Donation Style */
.sponsor-donate-card {
    background: linear-gradient(135deg, rgba(204, 54, 52, 0.95) 0%, rgba(168, 44, 42, 0.95) 100%);
    border: none;
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 40px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(204, 54, 52, 0.3);
    position: relative;
    overflow: hidden;
}

.sponsor-donate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sponsor-donate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(204, 54, 52, 0.4);
}

.sponsor-donate-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sponsor-donate-card:hover .sponsor-donate-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.sponsor-donate-content {
    flex: 1;
}

.sponsor-donate-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-donate-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-size: 17px;
}

.sponsor-donate-btn {
    background: white;
    color: var(--primary-red);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.sponsor-donate-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
    .sponsor-donate-card {
        padding: 35px 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .sponsor-donate-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .sponsor-donate-content h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .sponsor-donate-card {
        padding: 30px 25px;
    }
    
    .sponsor-donate-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    
    .sponsor-donate-content h4 {
        font-size: 1.3rem;
    }
    
    .sponsor-donate-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
    }
}
		
        /* Contact Section */
        
       /* Contact Section - SINGLE FULL BOX */
       /* 
        .contact-section {
            padding: 80px 0;
            background: #f5f5f5;
            color: var(--dark-gray);
        }
        
        .contact-section .section-title {
            color: var(--primary-red);
            text-align: center;
        }
        
        .contact-section .section-tag {
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary-red);
        }
        
        .contact-full-box {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
            color: white;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(204, 54, 52, 0.3);
        }
        
        .contact-full-box h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }
        
        .contact-full-box p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.95;
        }
        
       

        .contact-callout {
            font-size: 1.1rem !important;
            font-weight: 600;
            line-height: 1.8;
            padding: 20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            border-left: 4px solid white;
            backdrop-filter: blur(10px);
        }
        
        .contact-info-box {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 1.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-info-text {
            flex: 1;
        }
        
        .contact-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.9;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }
        
        .contact-link {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: opacity 0.3s ease;
            word-break: break-word;
        }
        
        .contact-link:hover {
            opacity: 0.8;
            color: white;
        }
        
        .btn-send-email {
            background: var(--primary-red);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-send-email:hover {
            background: var(--primary-red-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(204, 54, 52, 0.4);
        }
*/
        /* Footer */
        
/* Contact Section - Updated Design */
/* Contact Section - Compact & Attractive Design */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-section .section-title {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.contact-section .section-tag {
    background: rgba(204, 54, 52, 0.1);
    color: var(--primary-red);
}

/* Unified Card - Everything in One Card */
.contact-unified-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
}

/* Left Side - Text Content */
.contact-text-content {
    padding: 45px 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.contact-highlight {
    font-weight: 600;
    margin-top: 0.5rem !important;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem !important;
}

/* Right Side - Contact Info */
.contact-info-side {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(204, 54, 52, 0.25);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(204, 54, 52, 0.35);
}

.contact-item-icon.location {
    background: linear-gradient(135deg, #575656 0%, #3a3a3a 100%);
    box-shadow: 0 6px 20px rgba(87, 86, 86, 0.25);
}

.contact-item:hover .contact-item-icon.location {
    box-shadow: 0 8px 25px rgba(87, 86, 86, 0.35);
}

.contact-item-details {
    flex: 1;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-gray);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-item-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

a.contact-item-value:hover {
    color: var(--primary-red-dark);
}

div.contact-item-value {
    color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-text-content {
        padding: 35px 40px;
    }
    
    .contact-info-side {
        padding: 35px 40px;
    }
    
    .contact-text-content h3 {
        font-size: 1.75rem;
    }
    
    .contact-text-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-text-content {
        padding: 30px 35px;
    }
    
    .contact-info-side {
        padding: 30px 35px;
        gap: 25px;
    }
    
    .contact-text-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-text-content p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-highlight {
        font-size: 0.95rem !important;
        padding-top: 0.75rem;
    }
    
    .contact-item-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .contact-item-value {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .contact-text-content {
        padding: 25px 30px;
    }
    
    .contact-info-side {
        padding: 25px 30px;
        gap: 20px;
    }
    
    .contact-text-content h3 {
        font-size: 1.4rem;
    }
    
    .contact-text-content p {
        font-size: 0.85rem;
    }
    
    .contact-highlight {
        font-size: 0.9rem !important;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-item-value {
        font-size: 1rem;
    }
}
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
        }
        /* Responsive */
        
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .about-image-wrapper::before {
                display: none;
            }
            .contact-left-box,
            .contact-right-box {
                border-radius: 20px;
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .hero-buttons .btn-hero-primary,
            .hero-buttons .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            .contact-left-box,
            .contact-right-box {
                padding: 40px 30px;
                min-height: auto;
            }
            .contact-left-box h3,
            .contact-right-box h3 {
                font-size: 1.75rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-section {
                padding-top: 100px;
            }
            .hero-title {
                font-size: 1.75rem;
            }
            .stat-box {
                margin-bottom: 1rem;
            }
            .contact-left-box,
            .contact-right-box {
                padding: 30px 20px;
            }
        }
        /* Ways to Get Involved Section - Compact Design */
        
        .get-involved-section {
            padding: 60px 0;
            background: white;
            position: relative;
        }
        
        .get-involved-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .get-involved-intro p {
            font-size: 1.05rem;
            color: var(--dark-gray);
            margin-bottom: 0;
        }
        
        .involvement-compact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 0 auto;
        }
        /* Donate link styling within the card */
		.involvement-compact-card .donate-link {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			margin-top: 12px;
			padding: 10px 20px;
			background-color: #c94b4b;
			color: white;
			text-decoration: none;
			border-radius: 8px;
			font-weight: 600;
			transition: background-color 0.3s ease;
		}

		.involvement-compact-card .donate-link:hover {
			background-color: #b03a3a;
		}

		.involvement-compact-card .donate-link i {
			font-size: 14px;
		}

		/* Optional: Make sponsor card slightly stand out */
		.sponsor-card {
			border: 2px solid #c94b4b;
		}

		
        .involvement-compact-card {
            background: white;
            border: 2px solid #e8e8e8;
            border-radius: 16px;
            padding: 25px 30px;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .involvement-compact-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.15);
            transform: translateY(-3px);
        }
        
        .involvement-compact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.1) 0%, rgba(204, 54, 52, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .involvement-compact-card:hover .involvement-compact-icon {
            background: var(--primary-red);
            color: white;
            transform: scale(1.1);
        }
        
        .involvement-compact-content h4 {
            font-size: 1.1rem;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .involvement-compact-content p {
            color: var(--dark-gray);
            line-height: 1.6;
            margin: 0;
            font-size: 16px;
        }
        
        .involvement-footer {
            text-align: center;
            max-width: 850px;
            margin: 40px auto 0;
            padding: 30px;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.05) 0%, rgba(204, 54, 52, 0.02) 100%);
            border-radius: 16px;
            border: 1px solid rgba(204, 54, 52, 0.1);
        }
        
        .involvement-footer p {
            color: var(--dark-gray);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }
        
        .involvement-footer strong {
            color: var(--primary-red);
            font-weight: 700;
        }
        
        @media (max-width: 767.98px) {
            .involvement-compact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .involvement-compact-card {
                padding: 20px;
            }
            .involvement-compact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            .involvement-footer {
                padding: 25px 20px;
            }
        }