/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    background: #111;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    padding: 18px 0 18px 0;
    box-sizing: border-box;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo-img {
    width: 50px;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7900;
    margin-left: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 2px 8px;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: #ff7900;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    background: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-contact-icon {
    color: #ff7900;
    font-size: 1.7rem;
    margin-right: 8px;
}

.nav-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.help-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.help-phone {
    color: #ff7900;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-contact:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #ff7900;
}

.drawer-header .logo-img {
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

.drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: #f8f9fa;
    color: #ff7900;
}

.mobile-nav-links i {
    width: 20px;
    font-size: 18px;
    color: #ff7900;
}

.mobile-contact {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.mobile-contact-item:last-child {
    border-bottom: none;
}

.mobile-contact-item i {
    width: 20px;
    font-size: 18px;
    color: #ff7900;
}

.mobile-contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.mobile-contact-phone,
.mobile-contact-email {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('assets/hero-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hero Section Refined */
.hero-content {
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
    padding-top: 200px;
    max-width: 1270px;
    min-height: 600px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: #ff7900;
    border-radius: 50%;
    margin-bottom: 18px;
    margin-left: 2px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #fff;
}

.hero-label-icon {
    color: #ff7900;
    font-size: 1.4rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -1px;
}

.hero-title span {
    color: #ff7900;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.18rem;
    margin-bottom: 34px;
    color: #fff;
    font-weight: 400;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 38px;
    border-radius: 32px;
    font-size: 1.18rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ff7900;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 121, 0, 0.10);
}

.btn-primary:hover {
    background: #e86c00;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 121, 0, 0.18);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    padding-left: 18px;
}

.btn-secondary:hover {
    background: #fff;
    color: #ff7900;
    border-color: #ff7900;
}

.btn-play {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}

.btn-play .play-circle {
    background: #ff7900;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
}

.btn-play:hover .play-circle {
    background: #fff;
    color: #ff7900;
    border: 2px solid #ff7900;
}

.play-label {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-left: 0px;
    margin-right: 10px;
}

.arrow {
    margin-left: 12px;
    font-size: 1.2rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-features-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 500;
}

.hero-check {
    color: #ff7900;
    font-size: 1.2rem;
}

.hero-features-right {
    display: flex;
    align-items: flex-start;
}

/* Help Box Glassmorphism */
.hero-helpbox {
    position: absolute;
    right: 0;
    bottom: 32px;
    background: rgba(30, 30, 30, 0.45);
    border-radius: 16px;
    padding: 22px 32px;
    color: #fff;
    min-width: 260px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 3;
}

.help-title {
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.help-desc {
    font-size: 1rem;
    color: #fff;
    opacity: 0.92;
}

/* Animations */
.animate-fadein {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.animate-slideup {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.2s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About/Welcome Section */
.about-section {
    background: #fff;
    color: #222;
    padding: 80px 0 60px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.about-images {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-img.main {
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.about-img.side {
    width: 140px;
    border-radius: 12px;
    margin-left: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-content {
    flex: 2 1 400px;
}

.about-content h2 {
    color: #ff7900;
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Titles */
.section-title {
    color: #ff7900 !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    padding: 20px 0;
    text-align: center;
}

/* Causes/Projects Section */
.causes-section {
    background: #f7f7f7;
    padding: 80px 0 60px 0;
}

.causes-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cause-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 28px 22px 32px 22px;
    width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.cause-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.cause-card h3 {
    color: #ff7900;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cause-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 12px;
}

/* Why Choose Us/Stats Section */
.why-section {
    background: #fff;
    padding: 80px 0 60px 0;
}

.why-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.why-image img {
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.why-content {
    flex: 2 1 400px;
}

.why-content h2 {
    color: #ff7900;
    font-size: 2rem;
    margin-bottom: 18px;
}

.why-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.stats {
    display: flex;
    gap: 36px;
    margin-top: 18px;
}

.stat {
    text-align: center;
}

.stat-number {
    color: #ff7900;
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    color: #444;
    font-size: 1rem;
}

/* Events/News Section */
.events-section {
    background: #f7f7f7;
    padding: 80px 0 60px 0;
}

.events-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 24px 18px 28px 18px;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}

.event-card h3 {
    color: #ff7900;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.event-card p {
    color: #444;
    font-size: 0.98rem;
}

/* Support/Donation Progress Section */
.support-section {
    background: #fff;
    padding: 80px 0 60px 0;
}

.support-flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.support-progress {
    flex: 2 1 400px;
}

.progress-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.progress-item {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    width: 260px;
}

.progress-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.progress-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1rem;
}

/* Donation Form */
.donate-form {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 32px 24px;
    width: 320px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.donate-form h2 {
    color: #ff7900;
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-align: center;
}

.donate-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.donate-form input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
}

.donate-form button {
    margin-top: 8px;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 80px 0 60px 0;
    position: relative;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255, 121, 0), transparent);
}

.testimonials-flex {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    width: 380px;
    border-left: 4px solid #ff7900;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #ff7900;
}

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

.testimonial-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-author strong {
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #ff7900;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    background: #f7f7f7;
    padding: 80px 0 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Blog/News Section */
.blog-section {
    background: #fff;
    padding: 80px 0 60px 0;
    position: relative;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255, 121, 0), transparent);
}

.blog-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    width: 380px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7900;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Blog Section Button Styling */
.blog-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
    border: none;
}

.blog-content .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(135deg, #ff9500, #ff7900) !important;
    border: none !important;
}

.blog-content .btn-secondary i {
    transition: transform 0.3s ease;
}

.blog-content .btn-secondary:hover i {
    transform: translateX(5px);
}

/* Footer Redesign */
.footer-section {
    position: relative;
    background: #0c151c;
    color: #e0e0e0;
    padding: 0;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/footer-bg.png') center bottom repeat-x;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    height: 100%;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 0 0;
    align-items: flex-start;
    justify-content: center;
    justify-items: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .logo-img {
    width: 60px;
    height: auto;
    max-height: 50px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.footer-contact-info p {
    margin: 0 0 4px 0;
    color: #b0b0b0;
    font-size: 1rem;
}

.footer-phone {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-email {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-social span {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff7900;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #fff;
    color: #ff7900;
}

/* Newsletter */
.footer-newsletter {
    align-items: center;
    justify-content: center;
}

.newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    background: #101a22;
    border-radius: 40px;
    padding: 6px 8px 6px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    padding: 12px 0;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

.newsletter-form button {
    background: #ff7900;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-left: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.newsletter-form button:hover {
    background: #fff;
    color: #ff7900;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.footer-link-group h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-link-group a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-link-group a:hover {
    color: #ff7900;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.12);
    text-align: center;
    padding: 18px 0;
    color: #aaa;
    font-size: 1rem;
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1100px) {

    .about-flex,
    .why-flex,
    .support-flex,
    .footer-flex {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .causes-cards,
    .events-cards,
    .blog-cards,
    .testimonials-flex {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-newsletter {
        margin-bottom: 24px;
    }

    .hero-content {
        padding-top: 90px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-helpbox {
        min-width: 180px;
        padding: 14px 12px;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .who-we-are-content {
        padding-left: 0;
        text-align: center;
    }

    .content-title {
        font-size: 2.4rem;
    }

    .impact-stats {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0 0 0;
    }

    .container {
        width: 98%;
        padding: 0 4px;
    }

    .about-img.main,
    .why-image img {
        width: 100%;
        margin-left: 0;
    }

    .about-img.side {
        width: 80px;
        margin-left: 0;
    }

    .progress-item {
        width: 100%;
    }

    .donate-form {
        width: 100%;
    }

    .cause-card,
    .event-card,
    .blog-card,
    .testimonial-card {
        width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
        padding: 6px 8px 6px 12px;
    }

    .footer-link-group {
        min-width: 120px;
    }

    .hero-content {
        padding-top: 60px;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-features {
        flex-direction: column;
        gap: 18px;
    }

    .hero-helpbox {
        position: static;
        margin-top: 18px;
        min-width: 100%;
        padding: 12px 8px;
    }

    .who-we-are-section {
        padding: 80px 0;
    }

    .who-we-are-grid {
        gap: 40px;
    }

    .content-title {
        font-size: 2rem;
    }

    .main-image {
        transform: rotate(0deg);
    }

    .secondary-image {
        transform: rotate(0deg);
        margin-left: 0;
    }

    .achievement-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
        min-width: auto;
    }

    .impact-stats {
        flex-direction: column;
        text-align: center;
    }

    .stat-item {
        justify-content: center;
    }

    .impact-section {
        padding: 80px 0;
    }

    .impact-title {
        font-size: 2.2rem;
    }

    .impact-subtitle {
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .impact-card {
        padding: 25px 20px;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-icon {
        width: 60px;
        height: 60px;
    }

    .impact-icon i {
        font-size: 1.5rem;
    }

    .recognition-badge {
        padding: 15px 20px;
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero-features {
        flex-direction: column;
        gap: 24px;
    }

    .help-box {
        min-width: 100%;
        padding: 16px 14px;
    }
}

@media (max-width: 600px) {

    /* Header Mobile Responsive */
    .navbar {
        padding: 12px 0;
    }

    .nav-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        min-height: auto;
    }

    /* Hide desktop navigation and contact on mobile */
    .desktop-nav,
    .desktop-contact {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    .logo-img {
        width: auto;
        height: auto;
        max-height: 35px;
    }

    .logo-text {
        font-size: 1rem;
        color: #ff7900;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero-content {
        padding-top: 70px;
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Who We Are Section Mobile */
    .who-we-are-section {
        padding: 60px 0;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        width: 100%;
    }

    .who-we-are-images {
        order: 2;
        padding: 0 20px;
    }

    .who-we-are-content {
        order: 1;
        text-align: center;
        padding: 0px !important;
    }

    .image-stack {
        position: relative;
        height: 400px;
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
    }

    .main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 85%;
        height: 280px;
        border-radius: 16px;
        transform: rotate(-2deg);
    }

    .secondary-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
        height: 180px;
        border-radius: 12px;
        transform: rotate(2deg);
    }

    .achievement-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
        padding: 12px;
        min-width: auto;
    }

    .badge-icon {
        width: 30px;
        height: 30px;
    }

    .badge-icon i {
        font-size: 1rem;
    }

    .badge-content {
        padding: 5px;
    }

    .badge-title {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .badge-value {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .content-header {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .header-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .header-icon i {
        font-size: 1.5rem;
    }

    .header-label {
        font-size: 0.9rem;
    }

    .content-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .content-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .philosophy-quote {
        padding: 20px;
        margin: 20px 0;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
    }

    .quote-icon i {
        font-size: 1.2rem;
    }

    .quote-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .content-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .primary-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .stat-icon img {
        width: 30px;
        height: 30px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-desc {
        font-size: 0.8rem;
    }

    /* Additional mobile improvements for very small screens */
    @media (max-width: 480px) {
        .who-we-are-section {
            padding: 40px 0;
        }

        .who-we-are-images {
            padding: 0 10px;
        }

        .who-we-are-content {
            padding: 0 10px;
        }

        .image-stack {
            height: 350px;
            max-width: 300px;
        }

        .main-image {
            width: 80%;
            height: 220px;
        }

        .secondary-image {
            width: 65%;
            height: 150px;
        }

        .achievement-badge {
            width: 80px;
            height: 80px;
            top: 15px;
            right: 15px;
            padding: 10px;
        }

        .badge-icon {
            width: 25px;
            height: 25px;
        }

        .badge-icon i {
            font-size: 0.9rem;
        }

        .badge-content {
            padding: 3px;
        }

        .badge-title {
            font-size: 0.5rem;
        }

        .badge-value {
            font-size: 0.7rem;
        }

        .content-title {
            font-size: 1.6rem;
        }

        .content-description {
            font-size: 0.95rem;
        }

        .philosophy-quote {
            padding: 15px;
        }

        .quote-content p {
            font-size: 0.95rem;
        }
    }

    /* What We Do Section Mobile */
    .what-we-do-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .what-we-do-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .what-we-do-icon-wrapper {
        width: 60px;
        height: 60px;
        align-self: center;
    }

    .what-we-do-icon {
        font-size: 1.5rem;
    }

    .what-we-do-content h3 {
        font-size: 1.1rem;
    }

    .what-we-do-content p {
        font-size: 0.9rem;
    }
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff7900, #ff9500);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.section-desc {
    color: #666;
    font-size: 1.2rem;
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.what-we-do-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-do-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 121, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.what-we-do-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff7900, #ff9500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.what-we-do-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 121, 0, 0.15);
    border-color: rgba(255, 121, 0, 0.3);
}

.what-we-do-item:hover::before {
    transform: scaleY(1);
}

.what-we-do-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
    transition: all 0.3s ease;
}

.what-we-do-item:hover .what-we-do-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 121, 0, 0.4);
}

.what-we-do-icon {
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.what-we-do-item:hover .what-we-do-icon {
    transform: scale(1.1);
}

.what-we-do-content {
    flex: 1;
}

.what-we-do-content h3 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.what-we-do-item:hover .what-we-do-content h3 {
    color: #ff7900;
}

.what-we-do-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Impact Section - Home Page */
.impact-section {
    background: linear-gradient(135deg, #ff7900 0%, #ff9500 50%, #ff7900 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.impact-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.impact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.impact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.impact-icon i {
    font-size: 2rem;
    color: #fff;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover .impact-number {
    transform: scale(1.1);
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.impact-desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.impact-recognition {
    position: relative;
    z-index: 2;
}

.recognition-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recognition-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.recognition-badge i {
    font-size: 1.3rem;
    color: #fff;
}

/* News Section */
.news-section {
    background: #fff;
    padding: 80px 0;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.news-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff7900;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-date {
    color: #ff7900;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.news-card h3 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.news-action {
    text-align: center;
    margin-top: 40px;
    display: block;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
    border: none;
    cursor: pointer;
}

.news-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.news-btn i {
    transition: transform 0.3s ease;
}

.news-btn:hover i {
    transform: translateX(5px);
}

/* Gallery Section - Complete Redesign */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.gallery-header-content {
    flex: 1;
}

.gallery-header-content .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-header-content .section-desc {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.gallery-header-action {
    flex-shrink: 0;
    margin-top: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    border: 1px solid rgba(255, 121, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 121, 0, 0.2);
    border-color: rgba(255, 121, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 121, 0, 0.9), rgba(255, 149, 0, 0.8));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.gallery-overlay-content {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery-overlay-content span {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-btn:hover i {
    transform: translateX(8px);
}

/* Events Section - Complete Redesign */
.events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.events-header-content {
    flex: 1;
}

.events-header-content .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.events-header-content .section-desc {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
}

.events-header-action {
    flex-shrink: 0;
    margin-top: 10px;
}

.events-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    max-width: 100%;
    width: 100%;
}

.event-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 121, 0, 0.1);
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7900, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 121, 0, 0.2);
    border-color: rgba(255, 121, 0, 0.3);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card-header {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.event-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 20px 20px;
    opacity: 0.3;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
    position: relative;
    z-index: 2;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.event-month {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-year {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.event-status {
    position: relative;
    z-index: 2;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.upcoming {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge.ongoing {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.completed {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.event-card-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.event-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 121, 0, 0.1), rgba(255, 149, 0, 0.1));
    color: #ff7900;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-category i {
    font-size: 1rem;
}

.event-card h3 {
    color: #222;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.event-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
}

.event-detail i {
    color: #ff7900;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-register-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.event-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.event-share-btn,
.event-calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 121, 0, 0.1);
    color: #ff7900;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 121, 0, 0.2);
}

.event-share-btn:hover,
.event-calendar-btn:hover {
    background: #ff7900;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.events-cta {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 121, 0, 0.3);
}

.events-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.events-cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.events-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.events-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.events-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.events-calendar-btn,
.events-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.events-calendar-btn {
    background: #fff;
    color: #ff7900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.events-calendar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ff7900;
    text-decoration: none;
}

.events-contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.events-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.events-btn:hover::before {
    left: 100%;
}

.events-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.events-btn i {
    transition: transform 0.3s ease;
}

.events-btn:hover i {
    transform: translateX(8px);
}

/* Support Section - Complete Redesign */
.support-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #222;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}

.support-header-content {
    flex: 1;
}

.support-header-content .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-header-content .section-desc {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
}

.support-header-stats {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.support-stat {
    text-align: center;
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 121, 0, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.support-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 121, 0, 0.15);
    border-color: rgba(255, 121, 0, 0.3);
}

.support-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7900;
    line-height: 1;
    margin-bottom: 8px;
}

.support-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.support-option {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 121, 0, 0.1);
    position: relative;
}

.support-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7900, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 121, 0, 0.2);
    border-color: rgba(255, 121, 0, 0.3);
}

.support-option:hover::before {
    transform: scaleX(1);
}

.support-option-icon {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px 0;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    transition: all 0.3s ease;
}

.support-option:hover .support-option-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
}

.support-option-icon i {
    font-size: 2rem;
    color: #fff;
}

.support-option-content {
    padding: 0 30px 30px;
}

.support-option h3 {
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.support-option p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-option-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
}

.support-feature i {
    color: #ff7900;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.support-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.support-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.support-option-btn i {
    transition: transform 0.3s ease;
}

.support-option-btn:hover i {
    transform: translateX(5px);
}

.support-cta {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 121, 0, 0.3);
}

.support-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.support-cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.support-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.support-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.support-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ff7900;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.support-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ff7900;
    text-decoration: none;
}

.support-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.support-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* Who We Are Section - Complete Redesign */
.who-we-are-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column - Images */
.who-we-are-images {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: all 0.3s ease;
    z-index: 2;
}

.main-image:hover {
    transform: rotate(-1deg) scale(1.02);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: #fff;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-content i {
    font-size: 1.5rem;
    color: #ff7900;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.secondary-image:hover {
    transform: rotate(1deg) scale(1.02);
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.2rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Right Column - Content */
.who-we-are-content {
    padding-left: 40px;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.header-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.header-label {
    color: #ff7900;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.content-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.philosophy-quote {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-left: 4px solid #ff7900;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.philosophy-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,121,0,0.1)"/></svg>') repeat;
    background-size: 20px 20px;
    opacity: 0.3;
    border-radius: 16px;
}

.quote-icon {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote-icon i {
    font-size: 2rem;
    color: #ff7900;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-content p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.quote-author {
    color: #ff7900;
    font-size: 1rem;
    font-weight: 500;
}

.content-actions {
    margin-bottom: 40px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
}

.primary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.impact-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 121, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 121, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-stats:hover::before {
    opacity: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff7900;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff7900;
    line-height: 1;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #ff9500;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 56px;
    align-items: center;
}

.about-images-stack {
    position: relative;
    min-width: 340px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.about-img-main {
    width: 280px;
    height: 260px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-overlap {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 210px;
    height: 160px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.about-img-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-funded-badge {
    position: absolute;
    left: 170px;
    bottom: 18px;
    background: #ff7900;
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(255, 121, 0, 0.10);
    z-index: 3;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-funded-badge i {
    font-size: 1.7rem;
    margin-right: 6px;
}

.funded-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.funded-amount {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
}

.about-content-area {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-label {
    color: #ff7900;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.about-label i {
    font-size: 1.2rem;
}

.about-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.13;
}

.about-desc {
    font-size: 1.13rem;
    color: #666;
    margin-bottom: 18px;
    max-width: 500px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-feature-icon {
    color: #ff7900;
    font-size: 2rem;
    margin-top: 2px;
}

.about-feature-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #111;
}

.about-feature-desc {
    font-size: 1rem;
    color: #666;
}

.about-actions-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 18px;
}

.about-stats-card {
    background: #fafafa;
    border-radius: 18px;
    padding: 24px 28px 18px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    min-width: 180px;
    max-width: 200px;
    margin-left: 10px;
}

.about-stats-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-stats-number {
    color: #ff7900;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-stats-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.about-stats-desc {
    font-size: 0.98rem;
    color: #888;
    text-align: center;
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-images-stack {
        min-width: 220px;
        min-height: 320px;
    }

    .about-img-main {
        width: 200px;
        height: 160px;
    }

    .about-img-overlap {
        width: 120px;
        height: 90px;
        bottom: -30px;
    }

    .about-funded-badge {
        left: 80px;
        bottom: 0;
        padding: 10px 14px 8px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 40px 0 30px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-images-stack {
        min-width: 120px;
        min-height: 160px;
    }

    .about-img-main {
        width: 100px;
        height: 80px;
        border-radius: 12px;
    }

    .about-img-overlap {
        width: 60px;
        height: 40px;
        border-radius: 8px;
        bottom: -10px;
    }

    .about-funded-badge {
        left: 30px;
        bottom: 0;
        padding: 6px 8px 4px 6px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .about-title {
        font-size: 1.2rem;
    }

    .about-actions-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .about-stats-card {
        min-width: 120px;
        max-width: 140px;
        padding: 10px 10px 8px 10px;
    }

    .about-stats-img {
        width: 36px;
        height: 36px;
    }

    .about-stats-number {
        font-size: 1.1rem;
    }
}

/* Hero Features Row (inline) */
.hero-features-row {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-features-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
}

.hero-check {
    color: #ff7900;
    font-size: 1.2rem;
}

.hero-helpbox-inline {
    background: rgba(30, 30, 30, 0.45);
    border-radius: 12px;
    padding: 18px 28px 14px 28px;
    color: #fff;
    min-width: 260px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 3;
    margin-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-helpbox-inline .help-title {
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.hero-helpbox-inline .help-desc {
    font-size: 1rem;
    color: #fff;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .hero-features-row {
        flex-direction: column;
        gap: 18px;
    }

    .hero-helpbox-inline {
        min-width: 100%;
        margin-left: 0;
        margin-top: 12px;
        padding: 14px 12px 10px 12px;
    }
}



/* About Us Figma Section */
.about-figma-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 64px;
    align-items: center;
    margin-top: 0;
}

.about-figma-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    min-width: 380px;
}

.about-figma-img {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.about-figma-img-main {
    width: 320px;
    height: 320px;
    z-index: 2;
}

.about-figma-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma-img-lower {
    width: 280px;
    height: 200px;
    margin-left: 48px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.about-figma-img-lower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma-badge {
    position: absolute;
    left: -32px;
    bottom: 24px;
    background: #ff7900;
    color: #fff;
    border-radius: 18px;
    padding: 18px 28px 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(255, 121, 0, 0.10);
    z-index: 4;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-figma-badge i {
    font-size: 1.7rem;
    margin-right: 6px;
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.badge-amount {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
}

.about-figma-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.about-figma-label-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-figma-label-icon {
    color: #ff7900;
    font-size: 1.3rem;
}

.about-figma-label {
    color: #ff7900;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-figma-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.13;
}

.about-figma-desc {
    font-size: 1.18rem;
    color: #666;
    margin-bottom: 18px;
    max-width: 600px;
    font-weight: 400;
}

.about-figma-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-figma-feature-icon {
    color: #ff7900;
    font-size: 2rem;
    margin-top: 2px;
}

.about-figma-feature-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #111;
}

.about-figma-feature-desc {
    font-size: 1rem;
    color: #666;
}

.about-figma-bottom-row {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    margin-top: 32px;
}

.about-figma-btn {
    font-size: 1.18rem;
    padding: 18px 38px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 121, 0, 0.10);
}

.about-figma-stats-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px 38px 28px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    min-width: 220px;
    max-width: 260px;
    margin-left: 10px;
    position: relative;
}

.about-figma-stats-img-wrap {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.about-figma-stats-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.about-figma-stats-number {
    color: #ff7900;
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 4px;
    text-align: center;
}

.about-figma-stats-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    text-align: center;
}

.about-figma-stats-desc {
    font-size: 0.98rem;
    color: #888;
    text-align: center;
}

@media (max-width: 1200px) {
    .about-figma-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-figma-images {
        min-width: 220px;
        align-items: center;
    }

    .about-figma-img-main {
        width: 220px;
        height: 220px;
    }

    .about-figma-img-lower {
        width: 160px;
        height: 110px;
        margin-left: 24px;
        margin-top: -30px;
    }

    .about-figma-badge {
        left: -18px;
        bottom: 0;
        padding: 10px 14px 8px 10px;
        font-size: 1rem;
    }

    .about-figma-title {
        font-size: 2rem;
    }

    .about-figma-bottom-row {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .about-figma-stats-card {
        min-width: 160px;
        max-width: 180px;
        padding: 18px 14px 10px 14px;
    }

    .about-figma-stats-img-wrap {
        width: 48px;
        height: 48px;
        top: -24px;
    }

    .about-figma-stats-number {
        font-size: 1.1rem;
        margin-top: 28px;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 40px 0 30px 0;
    }

    .about-figma-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-figma-images {
        min-width: 120px;
        gap: 12px;
    }

    .about-figma-img-main {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }

    .about-figma-img-lower {
        width: 60px;
        height: 40px;
        border-radius: 8px;
        margin-left: 8px;
        margin-top: -10px;
    }

    .about-figma-badge {
        left: -8px;
        bottom: 0;
        padding: 6px 8px 4px 6px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .about-figma-title {
        font-size: 1.1rem;
    }

    .about-figma-bottom-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .about-figma-stats-card {
        min-width: 80px;
        max-width: 100px;
        padding: 8px 6px 4px 6px;
    }

    .about-figma-stats-img-wrap {
        width: 28px;
        height: 28px;
        top: -12px;
    }

    .about-figma-stats-number {
        font-size: 0.8rem;
        margin-top: 14px;
    }
}

/* About Us Figma2 Section */
.about-figma2-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-top: 0;
}

.about-figma2-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.about-figma2-label-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-figma2-label-icon {
    color: #ff7900;
    font-size: 1.3rem;
}

.about-figma2-label {
    color: #ff7900;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-figma2-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.13;
}

.about-figma2-desc {
    font-size: 1.18rem;
    color: #666;
    margin-bottom: 18px;
    max-width: 600px;
    font-weight: 400;
}

.about-figma2-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-figma2-feature-icon {
    color: #ff7900;
    font-size: 2.2rem;
    margin-top: 2px;
}

.about-figma2-feature-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #111;
}

.about-figma2-feature-desc {
    font-size: 1rem;
    color: #666;
}

.about-figma2-divider {
    width: 100%;
    border: none;
    border-top: 1.5px solid #eee;
    margin: 18px 0 0 0;
}

.about-figma2-btn {
    font-size: 1.18rem;
    padding: 18px 38px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 121, 0, 0.10);
    margin-top: 18px;
}

.about-figma2-stats-card {
    background: #fff;
    border-radius: 24px 24px 32px 24px;
    padding: 48px 38px 28px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    min-width: 260px;
    max-width: 320px;
    margin-left: 10px;
    position: relative;
    margin-top: 32px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.about-figma2-stats-img-wrap {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.about-figma2-stats-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.about-figma2-stats-number {
    color: #ff7900;
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 4px;
    text-align: center;
}

.about-figma2-stats-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    text-align: center;
}

.about-figma2-stats-desc {
    font-size: 0.98rem;
    color: #888;
    text-align: center;
}

@media (max-width: 1100px) {
    .about-figma2-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-figma2-title {
        font-size: 2rem;
    }

    .about-figma2-stats-card {
        min-width: 180px;
        max-width: 220px;
        padding: 28px 14px 10px 14px;
    }

    .about-figma2-stats-img-wrap {
        width: 48px;
        height: 48px;
        top: -24px;
    }

    .about-figma2-stats-number {
        font-size: 1.1rem;
        margin-top: 28px;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 40px 0 30px 0;
    }

    .about-figma2-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-figma2-title {
        font-size: 1.1rem;
    }

    .about-figma2-stats-card {
        min-width: 100px;
        max-width: 120px;
        padding: 8px 6px 4px 6px;
    }

    .about-figma2-stats-img-wrap {
        width: 28px;
        height: 28px;
        top: -12px;
    }

    .about-figma2-stats-number {
        font-size: 0.8rem;
        margin-top: 14px;
    }
}

/* About Us Figma3 Left Image Stack */
.about-figma3-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.about-figma3-images {
    position: relative;
    min-width: 380px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-figma3-dot {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #ff7900;
    border-radius: 50%;
    z-index: 10;
}

.about-figma3-img {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    background: #fff;
    position: relative;
}

.about-figma3-img-top {
    width: 320px;
    height: 320px;
    margin-bottom: 32px;
    z-index: 2;
}

.about-figma3-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma3-img-bottom {
    width: 320px;
    height: 220px;
    margin-left: 48px;
    z-index: 3;
}

.about-figma3-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma3-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: #ff7900;
    color: #fff;
    border-radius: 18px;
    padding: 18px 28px 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(255, 121, 0, 0.10);
    z-index: 4;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-figma3-badge i {
    font-size: 1.7rem;
    margin-right: 6px;
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.badge-amount {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
}

@media (max-width: 1200px) {
    .about-figma3-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-figma3-images {
        min-width: 220px;
        align-items: center;
    }

    .about-figma3-img-top {
        width: 220px;
        height: 220px;
        margin-bottom: 18px;
    }

    .about-figma3-img-bottom {
        width: 180px;
        height: 110px;
        margin-left: 24px;
    }

    .about-figma3-dot {
        left: -16px;
        width: 10px;
        height: 10px;
    }

    .about-figma3-badge {
        right: 0;
        bottom: 0;
        padding: 10px 14px 8px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .about-figma3-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-figma3-images {
        min-width: 120px;
        gap: 12px;
    }

    .about-figma3-img-top {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .about-figma3-img-bottom {
        width: 60px;
        height: 40px;
        border-radius: 8px;
        margin-left: 8px;
    }

    .about-figma3-dot {
        left: -8px;
        width: 6px;
        height: 6px;
    }

    .about-figma3-badge {
        right: 0;
        bottom: 0;
        padding: 6px 8px 4px 6px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

/* About Us Figma Final Left Image Stack */
.about-figma-final-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.about-figma-final-images {
    position: relative;
    min-width: 380px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-figma-final-dot {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #ff7900;
    border-radius: 50%;
    z-index: 10;
}

.about-figma-final-img {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    background: #fff;
    position: relative;
}

.about-figma-final-img-top {
    width: 320px;
    height: 320px;
    margin-bottom: 32px;
    z-index: 2;
}

.about-figma-final-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma-final-img-bottom {
    width: 320px;
    height: 220px;
    margin-left: 48px;
    margin-top: 0;
    z-index: 3;
}

.about-figma-final-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-figma-final-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: #ff7900;
    color: #fff;
    border-radius: 18px;
    padding: 18px 28px 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(255, 121, 0, 0.10);
    z-index: 4;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-figma-final-badge i {
    font-size: 1.7rem;
    margin-right: 6px;
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.badge-amount {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
}

@media (max-width: 1200px) {
    .about-figma-final-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-figma-final-images {
        min-width: 220px;
        align-items: center;
    }

    .about-figma-final-img-top {
        width: 220px;
        height: 220px;
        margin-bottom: 18px;
    }

    .about-figma-final-img-bottom {
        width: 180px;
        height: 110px;
        margin-left: 24px;
    }

    .about-figma-final-dot {
        left: -16px;
        width: 10px;
        height: 10px;
    }

    .about-figma-final-badge {
        right: 0;
        bottom: 0;
        padding: 10px 14px 8px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .about-figma-final-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-figma-final-images {
        min-width: 120px;
        gap: 12px;
    }

    .about-figma-final-img-top {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .about-figma-final-img-bottom {
        width: 60px;
        height: 40px;
        border-radius: 8px;
        margin-left: 8px;
    }

    .about-figma-final-dot {
        left: -8px;
        width: 6px;
        height: 6px;
    }

    .about-figma-final-badge {
        right: 0;
        bottom: 0;
        padding: 6px 8px 4px 6px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

.services-section-bg {
    background: #f8f8f8 url('assets/our-service-bg.svg') no-repeat center top;
    background-size: cover;
    padding: 90px 0 60px 0;
    position: relative;
    z-index: 1;
}

/* Additional styles for updated content */

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff;
    color: #ff7900;
    transform: translateY(-2px);
}

/* Enhanced What We Do Section */
.what-we-do-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.what-we-do-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.what-we-do-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.what-we-do-icon-wrapper {
    background: #ff7900;
    border: none;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.what-we-do-icon {
    color: #fff;
    font-size: 1.5rem;
}

/* Enhanced About Section */
.about-funding-card {
    background: linear-gradient(135deg, #ff7900, #e86c00);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
}

/* Enhanced Impact Section */
.why-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7900;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.why-stat-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

/* Enhanced Donate Section */
.donate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.donate-submit-btn.secondary {
    background: transparent;
    color: #ff7900;
    border: 2px solid #ff7900;
}

.donate-submit-btn.secondary:hover {
    background: #ff7900;
    color: #fff;
}

.donate-notice {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-notice-icon {
    color: #2196f3;
    font-size: 1.2rem;
}

.donate-notice-text {
    font-size: 0.9rem;
    color: #1565c0;
}

/* Services Section - Complete Redesign */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7900, transparent);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}

.services-header-content {
    flex: 1;
}

.services-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.services-label-icon {
    color: #ff7900;
    font-size: 1.2rem;
}

.services-label {
    color: #ff7900;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-desc {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
}

.services-header-stats {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.services-stat {
    text-align: center;
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 121, 0, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.services-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 121, 0, 0.15);
    border-color: rgba(255, 121, 0, 0.3);
}

.services-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7900;
    line-height: 1;
    margin-bottom: 8px;
}

.services-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 121, 0, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7900, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 121, 0, 0.2);
    border-color: rgba(255, 121, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px 0;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
}

.service-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card-content {
    padding: 0 30px 30px;
}

.service-card h3 {
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
}

.service-feature i {
    color: #ff7900;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.services-cta {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 121, 0, 0.3);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.services-cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.services-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.services-contact-btn,
.services-schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-contact-btn {
    background: #fff;
    color: #ff7900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ff7900;
    text-decoration: none;
}

.services-schedule-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.services-schedule-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .services-header-content .services-title {
        font-size: 2.5rem;
    }

    .services-header-content .services-desc {
        font-size: 1.1rem;
    }

    .services-header-stats {
        justify-content: center;
        gap: 30px;
    }

    .services-stat {
        padding: 25px 20px;
        min-width: 100px;
    }

    .services-stat-number {
        font-size: 2rem;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
        margin: 25px 25px 0;
    }

    .service-card-icon i {
        font-size: 1.8rem;
    }

    .service-card-content {
        padding: 0 25px 25px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .services-cta {
        padding: 40px 30px;
    }

    .services-cta h3 {
        font-size: 1.8rem;
    }

    .services-cta p {
        font-size: 1.1rem;
    }

    .services-cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .services-contact-btn,
    .services-schedule-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-header {
        padding: 20px;
    }

    .service-card-content {
        padding: 0 20px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .services-header-content .services-title {
        font-size: 2rem;
    }

    .services-header-content .services-desc {
        font-size: 1rem;
    }
}

/* Enhanced Program Cards */
.program-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Enhanced Donate Logos */
.donate-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.donate-logo {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.donate-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-secondary {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1.1rem;
    }

    .what-we-do-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .what-we-do-item {
        padding: 24px 20px;
    }

    .what-we-do-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .what-we-do-icon {
        font-size: 1.5rem;
    }

    .what-we-do-content h3 {
        font-size: 1.1rem;
    }

    .what-we-do-content p {
        font-size: 0.9rem;
    }

    .impact-title {
        font-size: 2.8rem;
    }

    .impact-subtitle {
        font-size: 1.1rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .impact-number {
        font-size: 2.8rem;
    }

    .impact-icon {
        width: 70px;
        height: 70px;
    }

    .impact-icon i {
        font-size: 1.8rem;
    }

    .news-cards,
    .events-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .events-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .events-header-content .section-title {
        font-size: 2.2rem;
    }

    .events-header-content .section-desc {
        font-size: 1.1rem;
    }

    .events-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .event-card-header {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .event-date-badge {
        padding: 15px;
        min-width: 70px;
    }

    .event-day {
        font-size: 1.5rem;
    }

    .event-month {
        font-size: 0.7rem;
    }

    .event-year {
        font-size: 1rem;
    }

    .status-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .event-card-content {
        padding: 30px 25px;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .event-card p {
        font-size: 1rem;
    }

    .event-actions {
        flex-direction: column;
        gap: 12px;
    }

    .event-register-btn {
        width: 100%;
    }

    .event-share-btn,
    .event-calendar-btn {
        width: 100%;
        height: 44px;
    }

    .events-cta {
        padding: 40px 30px;
    }

    .events-cta h3 {
        font-size: 1.8rem;
    }

    .events-cta p {
        font-size: 1.1rem;
    }

    .events-cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .events-calendar-btn,
    .events-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .events-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card-header {
        padding: 20px;
    }

    .event-card-content {
        padding: 25px 20px;
    }

    .event-card h3 {
        font-size: 1.2rem;
    }

    .event-card p {
        font-size: 0.95rem;
    }

    .support-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-header {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .support-header-content .section-title {
        font-size: 2.5rem;
    }

    .support-header-content .section-desc {
        font-size: 1.1rem;
    }

    .support-header-stats {
        justify-content: center;
        gap: 30px;
    }

    .support-stat {
        padding: 25px 20px;
        min-width: 100px;
    }

    .support-stat-number {
        font-size: 2rem;
    }

    .support-option-icon {
        width: 70px;
        height: 70px;
        margin: 25px 25px 0;
    }

    .support-option-icon i {
        font-size: 1.8rem;
    }

    .support-option-content {
        padding: 0 25px 25px;
    }

    .support-option h3 {
        font-size: 1.3rem;
    }

    .support-option p {
        font-size: 1rem;
    }

    .support-cta {
        padding: 40px 30px;
    }

    .support-cta h3 {
        font-size: 1.8rem;
    }

    .support-cta p {
        font-size: 1.1rem;
    }

    .support-cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .support-primary-btn,
    .support-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .gallery-header-content .section-title {
        font-size: 2.2rem;
    }

    .gallery-header-content .section-desc {
        font-size: 1.1rem;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-overlay-content i {
        font-size: 2rem;
    }

    .gallery-overlay-content span {
        font-size: 1.1rem;
    }

    .donate-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .donate-logos {
        gap: 15px;
    }

    .donate-logo {
        font-size: 1rem;
        padding: 8px 12px;
    }

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

    .why-stat {
        padding: 15px;
    }
}

/* Animation enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.what-we-do-item {
    animation: fadeInUp 0.6s ease forwards;
}

.what-we-do-item:nth-child(1) {
    animation-delay: 0.1s;
}

.what-we-do-item:nth-child(2) {
    animation-delay: 0.2s;
}

.what-we-do-item:nth-child(3) {
    animation-delay: 0.3s;
}

.what-we-do-item:nth-child(4) {
    animation-delay: 0.4s;
}

.what-we-do-item:nth-child(5) {
    animation-delay: 0.5s;
}

.what-we-do-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Enhanced accessibility */
.btn:focus,
.donate-amount-btn:focus,
.donate-submit-btn:focus {
    outline: 2px solid #ff7900;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .hero-buttons,
    .donate-buttons,
    .video-play-btn {
        display: none;
    }

    .hero-section {
        background: #fff !important;
        color: #000 !important;
    }
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(rgba(0,0,0,80%), rgba(0,0,0,80%)), url('assets/hemburger_backend_image.jpg') center center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.services-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Main Services Section */
.main-services-section {
    padding: 100px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.services-label-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-label-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.services-label {
    color: #ff7900;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 121, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-feature i {
    color: #ff7900;
    font-size: 1rem;
}

.service-feature span {
    color: #555;
    font-size: 0.95rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.process-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Why Services Section */
.why-services-section {
    padding: 100px 0;
    background: #fff;
}

.why-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-services-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-services-text>p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.why-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.why-feature-content p {
    color: #666;
    line-height: 1.6;
}

.why-services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-services-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-services-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: #fff;
}

.why-services-image .overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-services-image .overlay-content i {
    font-size: 1.5rem;
    color: #ff7900;
}

.why-services-image .overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services CTA Section */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7900 0%, #ff9500 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.services-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.services-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-contact-btn,
.services-schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-contact-btn {
    background: #fff;
    color: #ff7900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ff7900;
    text-decoration: none;
}

.services-schedule-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.services-schedule-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .services-hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-services-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-services-text h2 {
        font-size: 2.2rem;
    }

    .services-cta-content h3 {
        font-size: 2rem;
    }

    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .services-hero-section {
        padding: 80px 0 60px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .main-services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-desc {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-content h3 {
        font-size: 1.3rem;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }

    .why-services-text h2 {
        font-size: 2rem;
    }

    .why-services-image img {
        height: 300px;
    }

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

    .services-cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Donation Page Styles */

/* Donation Hero Section */
.donation-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920&h=600&fit=crop') center center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.donation-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.donation-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Impact Section - Donation Page */
.donation-page .impact-section {
    padding: 100px 0;
    background: #fff;
}

.donation-page .impact-header {
    text-align: center;
    margin-bottom: 80px;
}

.donation-page .impact-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.donation-page .impact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.donation-page .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.donation-page .impact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 121, 0, 0.1);
}

.donation-page .impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.donation-page .impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.donation-page .impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.donation-page .impact-icon i {
    font-size: 2rem;
    color: #fff;
}

.donation-page .impact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.donation-page .impact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.donation-page .impact-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7900;
    background: rgba(255, 121, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Donation Options Section */
.donation-options-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.donation-options-header {
    text-align: center;
    margin-bottom: 80px;
}

.donation-options-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.donation-options-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.donation-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-option {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 121, 0, 0.1);
}

.option-header {
    text-align: center;
    margin-bottom: 30px;
}

.option-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.option-header p {
    color: #666;
    font-size: 1rem;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 15px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #ff7900;
    color: #ff7900;
    background: rgba(255, 121, 0, 0.05);
}

.amount-btn.custom {
    grid-column: span 2;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border-color: #ff7900;
}

.amount-btn.custom:hover {
    background: linear-gradient(135deg, #e86c00, #e86c00);
    color: #fff;
}

.custom-amount-input {
    margin-top: 20px;
}

.custom-amount-input input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #ff7900;
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}

/* Donation Form Section */
.donation-form-section {
    padding: 100px 0;
    background: #fff;
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 121, 0, 0.1);
}

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

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7900;
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #ff7900;
    background: rgba(255, 121, 0, 0.05);
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    accent-color: #ff7900;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.payment-label i {
    color: #ff7900;
    font-size: 1.2rem;
}

.form-actions {
    margin-top: 30px;
}

.donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stories-header {
    text-align: center;
    margin-bottom: 80px;
}

.stories-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.stories-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

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

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-impact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 121, 0, 0.1);
    border-radius: 10px;
}

.impact-label {
    font-size: 0.9rem;
    color: #666;
}

.impact-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff7900;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff7900;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
    background: rgba(255, 121, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.faq-question i {
    color: #ff7900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Donation CTA Section */
.donation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7900 0%, #ff9500 100%);
    position: relative;
    overflow: hidden;
}

.donation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.donation-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.donation-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.donation-cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.donation-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-cta-btn,
.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.donate-cta-btn {
    background: #fff;
    color: #ff7900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.donate-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ff7900;
    text-decoration: none;
}

.contact-cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* Donation Page Responsive */
@media (max-width: 768px) {
    .donation-hero-content h1 {
        font-size: 2.5rem;
    }

    .donation-hero-content p {
        font-size: 1.1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .donation-options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .donation-cta-content h3 {
        font-size: 2rem;
    }

    .donation-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .donation-hero-section {
        padding: 80px 0 60px;
    }

    .donation-hero-content h1 {
        font-size: 2rem;
    }

    .donation-hero-content p {
        font-size: 1rem;
    }

    .impact-section,
    .donation-options-section,
    .donation-form-section,
    .success-stories-section,
    .faq-section,
    .donation-cta {
        padding: 60px 0;
    }

    .impact-header h2,
    .donation-options-header h2,
    .stories-header h2,
    .faq-header h2 {
        font-size: 2.2rem;
    }

    .donation-option {
        padding: 25px;
    }

    .amount-options {
        grid-template-columns: 1fr;
    }

    .donation-form-container {
        padding: 25px 15px;
    }

    .donation-cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920&h=600&fit=crop') center center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.blog-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.blog-stat {
    text-align: center;
}

.blog-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.blog-stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Featured Article Section */
.featured-article-section {
    padding: 100px 0;
    background: #fff;
}

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

.featured-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.featured-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(255, 121, 0, 0.1);
    color: #ff7900;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date,
.article-author {
    color: #666;
    font-size: 0.9rem;
}

.featured-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.article-stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Categories Section */
.blog-categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.categories-header {
    text-align: center;
    margin-bottom: 80px;
}

.categories-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.categories-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 121, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7900, #ff9500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2rem;
    color: #fff;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-count {
    font-size: 0.9rem;
    color: #ff7900;
    font-weight: 600;
    background: rgba(255, 121, 0, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* Latest Articles Section */
.latest-articles-section {
    padding: 100px 0;
    background: #fff;
}

.latest-header {
    text-align: center;
    margin-bottom: 80px;
}

.latest-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.latest-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 121, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 121, 0, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 25px;
}

.article-content .article-meta {
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.read-more-link {
    color: #ff7900;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #e86c00;
    text-decoration: none;
}

.article-stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.8rem;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.4);
}

/* Newsletter Section */
.blog-newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7900 0%, #ff9500 100%);
    position: relative;
    overflow: hidden;
}

.blog-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
}

.benefit-item i {
    color: #fff;
    font-size: 1.1rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
}

.subscribe-form input {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form input:focus {
    outline: none;
    border-color: #fff;
}

.subscribe-btn {
    background: #fff;
    color: #ff7900;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Popular Tags Section */
.popular-tags-section {
    padding: 100px 0;
    background: #fff;
}

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

.tags-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.tags-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    background: rgba(255, 121, 0, 0.1);
    color: #ff7900;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 121, 0, 0.2);
}

.tag:hover {
    background: #ff7900;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Blog CTA Section */
.blog-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.blog-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.blog-cta-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.blog-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contribute-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contribute-btn {
    background: linear-gradient(135deg, #ff7900, #ff9500);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
}

.contribute-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 121, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.contact-btn {
    background: #fff;
    color: #ff7900;
    border: 2px solid #ff7900;
}

.contact-btn:hover {
    background: #ff7900;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Blog Page Responsive */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-hero-content p {
        font-size: 1.1rem;
    }

    .blog-stats {
        flex-direction: column;
        gap: 30px;
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .featured-image {
        height: 250px;
    }

    .featured-content {
        padding: 30px 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .newsletter-form {
        padding: 30px 20px;
    }

    .blog-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .blog-hero-section {
        padding: 80px 0 60px;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .featured-article-section,
    .blog-categories-section,
    .latest-articles-section,
    .blog-newsletter-section,
    .popular-tags-section,
    .blog-cta {
        padding: 60px 0;
    }

    .featured-header h2,
    .categories-header h2,
    .latest-header h2,
    .tags-header h2,
    .blog-cta-content h3 {
        font-size: 2.2rem;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    .featured-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .tags-cloud {
        gap: 10px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}