/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Navigation */
.navbar {
    background: #FFC107;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 50px;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(255, 107, 53, 0.3));
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    color: #000000 !important;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: none !important;
    filter: none !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
}

.logo-text:hover {
    color: #000000;
    transform: scale(1.08);
    opacity: 0.8;
}

.logo-tagline {
    font-size: 12px;
    color: #000000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -5px;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    background: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: normal;
    text-shadow: none;
    filter: none;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #000000;
    background: none;
    transform: scale(1.05);
    filter: none;
    text-shadow: none;
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ff6b35, #e55a2b);
    color: white;
    border: 2px solid #ff6b35;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn:active,
.btn.clicked {
    background: #ffffff !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(145deg, #ff6b35, #e55a2b) !important;
    color: white !important;
    border-color: #ff6b35 !important;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #e55a2b, #d44a1f) !important;
    color: white !important;
}

.btn-primary:active,
.btn-primary.clicked {
    background: #ffffff !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

.btn-outline {
    background: #ff6b35 !important;
    color: white !important;
    border-color: #ff6b35 !important;
}

.btn-outline:hover {
    background: #e55a2b !important;
    color: white !important;
}

.btn-outline:active,
.btn-outline.clicked {
    background: #ffffff !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

.btn-secondary {
    background-color: #ff6b35 !important;
    color: white !important;
    border-color: #ff6b35 !important;
}

.btn-secondary:hover {
    background-color: #e55a2b !important;
    color: white !important;
}

.btn-secondary:active,
.btn-secondary.clicked {
    background: white !important;
    color: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

.btn-hero {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 900;
    min-width: 200px;
    justify-content: center;
    border-radius: 5px;
    border-width: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:first-of-type {
    background: #FFC107 !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.btn-hero:first-of-type:hover {
    background: #FFD54F !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.btn-hero:last-of-type {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #FFC107 !important;
}

.btn-hero:last-of-type:hover {
    background: #2d2d2d !important;
    color: #ffffff !important;
    border-color: #FFC107 !important;
}

/* Hero Section */
.hero {
    position: relative;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 100px 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Impact Images Carousel */
.impact-images {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-carousel {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.carousel-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #ff6b35;
    transform: scale(1.2);
}

/* Statistics */
.statistics {
    background: #ffffff;
    color: #000000;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    color: white;
}

/* Key Services */
.key-services {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 800px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 800;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #FFC107;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000 !important;
    text-align: center;
    line-height: 1.2;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-item p {
    color: #000000 !important;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.support-card {
    background-color: #f5f5dc !important;
    color: #000000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #e6e6d4;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.support-image {
    height: 250px;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.support-card:hover .support-image img {
    transform: scale(1.05);
}

.support-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000 !important;
}

.support-content p {
    color: #000000 !important;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* About Organization */
.about-organization {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 700;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Additional Images Section */
.additional-images {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Success Images Section */
.success-images {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Donation Impact Section */
.donation-impact {
    padding: 80px 0;
    background-color: #ffffff;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.image-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
    min-height: 300px;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white !important;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.success-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
    min-height: 250px;
}

.success-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.success-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.success-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white !important;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.success-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.success-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
    min-height: 250px;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.impact-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white !important;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.impact-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.impact-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #2d4a6b;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Page Header */
.page-header {
    background: #ffffff;
    color: #000000;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000000;
}

.page-header p {
    font-size: 1.2rem;
    color: #000000;
}

/* Stories Gallery */
.stories-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    background-color: #ffffff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white !important;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

/* Donation Tabs */
.donation-tabs {
    background-color: #ffffff;
    padding: 20px 0;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ff6b35;
    color: white;
}

.tab-btn:hover,
.tab-btn:active,
.tab-btn.clicked {
    background-color: #ffb366;
    color: white;
}

.tab-btn.active {
    background-color: #2d5a27;
    color: white;
}

.tab-btn.active:hover,
.tab-btn.active:active,
.tab-btn.active.clicked {
    background-color: #4a7c59;
    color: white;
}

/* Donation Section */
.donation-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donation-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 20px;
}

.donation-info p {
    font-size: 16px;
    color: #ff6b35;
    margin-bottom: 30px;
    line-height: 1.8;
}

.donation-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff6b35;
}

.benefit-item i {
    color: #ff6b35;
    font-size: 20px;
}

.donation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
}

.donation-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 15px 20px;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    background-color: #ff6b35;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn:active,
.amount-btn.clicked {
    background-color: #ffb366;
    border-color: #ffb366;
    color: white;
}

.custom-amount {
    margin-bottom: 30px;
}

.custom-amount input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Material Donation */
.needed-items {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.needed-items h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.needed-item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.shipping-info {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.shipping-info h4 {
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.shipping-info p {
    margin-bottom: 5px;
    color: #ff6b35;
}

/* Donation Tracking */
.donation-tracking {
    background-color: #ffffff;
    padding: 80px 0;
}

.tracking-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 20px;
}

.tracking-content p {
    font-size: 16px;
    color: #ff6b35;
    margin-bottom: 30px;
}

.tracking-form {
    display: flex;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.tracking-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ffffff;
}

.tracking-form input:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #ff6b35;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: #ff6b35;
    font-size: 24px;
    width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.contact-item p {
    color: #ff6b35;
    margin: 0;
}

.email-link {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #000000 !important;
    text-decoration: underline;
}

.phone-link {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #000000 !important;
    text-decoration: underline;
}

.contact-item p br {
    line-height: 1.4;
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 20px;
    margin-top: 40px;
    border: 4px solid #e6e6d4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.team-member .role {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.team-member .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    text-align: left;
}

.team-placeholder {
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 2px dashed #e6e6d4;
}

.team-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.team-placeholder p {
    color: #666;
    font-style: italic;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.story-header {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 40px;
    text-align: center;
}

.story-header h2 {
    color: white !important;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.story-content {
    padding: 50px 40px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 25px;
    text-align: justify;
}

.story-promise {
    background-color: #f8f9fa;
    border-left: 5px solid #ff6b35;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}

.story-promise p {
    margin-bottom: 15px;
    font-weight: 600;
}

.story-promise p:last-child {
    font-style: italic;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0;
}

.social-media h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    background-color: #ff6b35;
    text-decoration: none;
    padding: 15px;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 20px;
}

.feedback-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
}

.feedback-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.mission-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin: 0 auto;
    justify-items: center;
}

.mission-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.mission-quote {
    font-size: 1.2rem;
    color: #000000;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.mission-text p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
}

.mission-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.mission-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Why Uganda Section */
.why-uganda {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin: 0 auto;
    justify-items: center;
}

.why-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.why-text p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.why-stat {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
}

.why-stat .stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.why-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 800px;
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 20px;
}

.team-header p {
    font-size: 18px;
    color: #ff6b35;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.team-placeholder {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.team-placeholder p {
    color: #ff6b35;
    font-size: 16px;
}

/* Impact Gallery */
.impact-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 900px;
    width: 100%;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 20px;
}

.gallery-header p {
    font-size: 18px;
    color: #ff6b35;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    background-color: #ffffff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white !important;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

/* Causes Section */
.causes-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Gradient text utility class - DISABLED - All text now navy */
.gradient-text {
    color: #000000 !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Beige card styling */
.beige-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 auto 20px auto;
    border: none;
    text-align: center;
    max-width: 800px;
}

/* Image styling - perfect fit without borders */
.support-image img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    display: block;
}

/* Force exact positioning to match reference */
.support-image img[src*="medical-support"] {
    object-position: center 40% !important;
}

.support-image img[src*="food-support"] {
    object-position: center 35% !important;
}

/* Third card styling (no image) */
.support-card:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

/* About page sections - all white backgrounds */
.why-uganda {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.impact-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Home page sections - all beige backgrounds */
.hero {
    background: #ffffff;
    color: #000000;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.statistics {
    background: #ffffff;
    color: #000000;
    padding: 80px 0;
}

.key-services {
    padding: 100px 0;
    background-color: #ffffff;
}

.support-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-organization {
    padding: 100px 0;
    background-color: #ffffff;
}

.support-card:last-child .support-content {
    width: 100%;
}

.support-card:last-child .support-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 24px;
    color: white;
}

/* Keep navigation and buttons orange - These stay orange */
.nav-menu a,
.logo-tagline,
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-hero,
.tab-btn,
.amount-btn,
.filter-btn,
.social-link {
    color: #ff6b35 !important;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
    letter-spacing: 1.5px !important;
    text-shadow: 3px 3px 6px rgba(255, 107, 53, 0.5) !important;
    filter: contrast(1.2) brightness(1.1) !important;
}

/* Make general text navy bold - Everything except navigation, buttons, and dark sections */
h1, h2, h3, h4, h5, h6, p, span, div, li, td, th, label, input, textarea, select {
    color: #000000 !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Plain navy for navigation links - no glow effect */
.nav-menu a {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    filter: none !important;
    letter-spacing: normal !important;
}

/* Keep logo tagline glowy navy */
.logo-tagline {
    color: #000000 !important;
    background: linear-gradient(135deg, #1a365d, #2c5282, #3182ce) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(26, 54, 93, 0.3) !important;
    filter: contrast(1.2) brightness(1.1) !important;
    letter-spacing: 1px !important;
}

/* Glowy navy effect for section headers (not logo) */
.page-header h1,
.page-header p,
.section-header h2,
.section-header p {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    filter: none !important;
    letter-spacing: 1px !important;
}

/* Plain navy for hero text - no glow effect */
.hero-text h1,
.hero-text p {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    filter: none !important;
    letter-spacing: normal !important;
}

/* ULTIMATE OVERRIDE: Force navy text on green sections - This must be the last rule - CACHE BUST 2025-01-14 */
/* Removed - now using glowy navy effect above */

/* Navy bold text override is above */

/* All text is now navy bold via universal selector above */

/* TEXT COLORS - Navy on light backgrounds, white on dark backgrounds */

/* Navy text for statistics on beige background */
.stat-number,
.stat-label {
    color: #000000 !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Navy text for all sections */
.page-header h1,
.page-header p,
.section-header h2,
.section-header p {
    color: #000000 !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Navy text for light backgrounds (main content, beige sections) */
.section-header h2,
.section-header p,
.about-text h2,
.about-text p,
.mission-text h2,
.mission-text p,
.why-text h2,
.why-text p,
.team-header h2,
.team-header p,
.gallery-header h2,
.gallery-header p,
.contact-info h2,
.contact-info p,
.donation-info h2,
.donation-info p,
.contact-item h4,
.contact-item p,
.social-media h4,
.feedback-form h3,
.donation-form h3,
.benefit-item,
.needed-items h3,
.needed-item,
.tracking-content h2,
.tracking-content p,
.team-placeholder h3,
.team-placeholder p,
.shipping-info h4,
.shipping-info p,
.mission-quote,
.why-stat .stat-number,
.why-stat .stat-label,
.beige-card h2,
.beige-card h3,
.beige-card p,
.beige-card span,
.beige-card div {
    color: #000000 !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

/* All text is now navy - gradient rules removed */

/* Force white text on image overlays for better readability */
.gallery-overlay,
.gallery-overlay *,
[class*="overlay"],
[class*="overlay"] * {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Keep navigation navy plain, make buttons yellow */
.nav-menu a {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Keep logo tagline black */
.logo-tagline {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: initial !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

/* All buttons - Bold yellow default, light yellow when clicked */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-hero,
.tab-btn,
.amount-btn,
.filter-btn,
.social-link {
    background: #FFC107 !important;
    color: white !important;
    border-color: #FFC107 !important;
    font-weight: 900 !important;
    letter-spacing: 0px !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
    -webkit-text-stroke: none !important;
    filter: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
}

/* Force button text to be visible */
.btn *,
.btn-primary *,
.btn-secondary *,
.btn-outline *,
.btn-hero *,
.tab-btn *,
.amount-btn *,
.filter-btn *,
.social-link * {
    color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-hero:hover,
.tab-btn:hover,
.amount-btn:hover,
.filter-btn:hover,
.social-link:hover {
    background: #FFD54F !important;
    color: white !important;
    border-color: #FFD54F !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4) !important;
    text-shadow: none !important;
    filter: none !important;
}

.btn:active,
.btn.clicked,
.btn-primary:active,
.btn-primary.clicked,
.btn-secondary:active,
.btn-secondary.clicked,
.btn-outline:active,
.btn-outline.clicked,
.btn-hero:active,
.btn-hero.clicked,
.tab-btn:active,
.tab-btn.clicked,
.amount-btn:active,
.amount-btn.clicked,
.filter-btn:active,
.filter-btn.clicked,
.social-link:active,
.social-link.clicked {
    background: #FFE082 !important;
    color: white !important;
    border-color: #FFE082 !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
    text-shadow: none !important;
    filter: none !important;
}

/* ULTIMATE YELLOW BUTTON OVERRIDE - Force all buttons yellow with white text */
button,
input[type="button"],
input[type="submit"],
a.btn,
a[class*="btn"] {
    background: #FFC107 !important;
    color: white !important;
    border-color: #FFC107 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force all button content to be visible */
a.btn *,
button *,
input[type="button"] *,
input[type="submit"] * {
    color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific override for hero buttons */
.btn-hero {
    background: #FFC107 !important;
    color: white !important;
    border-color: #FFC107 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 50px !important;
    line-height: 1.2 !important;
}

.btn-hero * {
    color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline !important;
}

/* Force button text to show */
.btn-hero::after {
    content: "" !important;
    display: none !important;
}

/* ULTIMATE BUTTON TEXT FIX - Override ALL gradient text rules for buttons */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-hero,
.tab-btn,
.amount-btn,
.filter-btn,
.social-link,
a[class*="btn"] {
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    background: #FFC107 !important;
    color: white !important;
    text-shadow: none !important;
    filter: none !important;
}

.btn *,
.btn-primary *,
.btn-secondary *,
.btn-outline *,
.btn-hero *,
.tab-btn *,
.amount-btn *,
.filter-btn *,
.social-link *,
a[class*="btn"] * {
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    background: none !important;
    color: white !important;
    text-shadow: none !important;
    filter: none !important;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
a.btn:hover,
a[class*="btn"]:hover {
    background: #FFD54F !important;
    color: white !important;
    border-color: #FFD54F !important;
    text-shadow: none !important;
    filter: none !important;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus,
a.btn:active,
a.btn:focus,
a[class*="btn"]:active,
a[class*="btn"]:focus {
    background: #FFE082 !important;
    color: white !important;
    border-color: #FFE082 !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}