/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #f4b942;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
}

.logo-squares {
    display: grid;
    grid-template-columns: repeat(2, 20px);
    grid-template-rows: repeat(2, 20px);
    gap: 2px;
}

.square {
    border-radius: 2px;
}

.sq1 { background-color: #f4b942; }
.sq2 { background-color: #e8e8e8; }
.sq3 { background-color: #e8e8e8; }
.sq4 { background-color: #f4b942; }

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 11px;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Navigation Styles */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #333;
}

.newsletter-link {
    background-color: #f4b942;
    color: #1a1a1a !important;
}

.newsletter-link:hover {
    background-color: #e8a635;
}

.donate-link {
    background-color: #f4b942;
    color: #1a1a1a !important;
}

.donate-link:hover {
    background-color: #e8a635;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #333;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* Secondary Navigation */
.secondary-nav {
    background-color: #2a2a2a;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
}

.news-ticker {
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: #ccc;
}

.ticker-item {
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f4b942;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* Featured Section */
.featured-section {
    grid-column: 1 / -1;
    margin-bottom: 40px;
}

.featured-article {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
}

.featured-category {
    background-color: #f4b942;
    color: #1a1a1a;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 4px;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-excerpt {
    font-size: 16px;
    color: #ddd;
    line-height: 1.5;
}

/* News Grid */
.news-grid {
    margin-bottom: 40px;
}

.news-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-category {
    background-color: #f4b942;
    color: #1a1a1a;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
    border-radius: 3px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.author {
    font-weight: 600;
}

.date {
    color: #aaa;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f4b942;
    padding-bottom: 8px;
}

.trending-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.trending-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.trending-meta {
    font-size: 11px;
    color: #888;
}

.officials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.official-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.official-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.official-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.official-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.official-info p {
    font-size: 12px;
    color: #666;
}

/* Floating Donate Button */
.floating-donate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.donate-btn {
    background-color: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f4b942;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4b942;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #888;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f4b942;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-columns {
        grid-template-columns: 1fr;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .secondary-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .news-ticker {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .floating-donate {
        bottom: 20px;
        right: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .featured-overlay {
        padding: 20px 20px 20px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .sidebar {
        padding: 20px;
    }
}

/* Animation for news ticker */
.news-ticker {
    overflow: hidden;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    color: #1a1a1a;
    border-radius: 8px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 400;
}

/* News Main Content */
.news-main {
    margin-bottom: 30px;
}

.featured-story {
    margin-bottom: 40px;
}

.news-grid-section {
    margin-bottom: 30px;
}

.news-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background-color: #f4b942;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #e8a635;
    transform: translateY(-2px);
}

/* Enhanced Trending Items */
.trending-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.trending-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    flex: 1;
}

.trending-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1a1a1a;
}

/* Official Contact */
.official-contact {
    font-size: 11px;
    color: #888;
    font-style: italic;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.quick-link:hover {
    background-color: #f8f9fa;
    border-left-color: #f4b942;
    color: #1a1a1a;
}

/* Shows & Podcasts Styles */
.shows-section {
    margin-bottom: 50px;
}

.shows-header {
    text-align: center;
    margin-bottom: 40px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.show-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.show-card:hover {
    transform: translateY(-5px);
}

.show-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.show-content {
    padding: 25px 20px;
}

.show-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.show-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.show-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.show-btn {
    background-color: #f4b942;
    color: #1a1a1a;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.show-btn:hover {
    background-color: #e8a635;
}

/* Live Streaming Section */
.live-section {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    border-radius: 8px;
    margin-bottom: 40px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.video-player {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.control-btn {
    background: #f4b942;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background: #e8a635;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.podcast-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    align-items: center;
}

.podcast-play {
    width: 60px;
    height: 60px;
    background: #f4b942;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.podcast-play:hover {
    background: #e8a635;
}

.podcast-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.podcast-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.podcast-duration {
    font-size: 12px;
    color: #666;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-wrapper {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

/* Mission Section */
.mission-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.lead-paragraph {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.mission-content p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    margin: 60px 0;
}

.cta-box {
    background: #1a1a1a;
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 25px;
    text-decoration: underline;
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight {
    color: #f4b942;
    font-weight: 600;
}

.donate-now-btn {
    display: inline-block;
    background-color: #f4b942;
    color: #1a1a1a;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #f4b942;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.donate-now-btn:hover {
    background-color: transparent;
    color: #f4b942;
}

.cta-footer {
    font-size: 14px;
    color: #f4b942;
    font-style: italic;
}

/* Goals Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.goal-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #1a1a1a;
}

.goal-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
}

/* Beliefs Section */
.beliefs-content {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.belief-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #f4b942;
}

.belief-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.belief-item p {
    color: #666;
    line-height: 1.6;
}

/* Model Section */
.model-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.model-list {
    margin: 25px 0;
    padding-left: 20px;
}

.model-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.model-list strong {
    color: #1a1a1a;
}

/* Commitment Section */
.commitment-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.commitment-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.area-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.area-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.area-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Solidarity Section */
.solidarity-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.donor-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.donor-item:hover {
    transform: translateY(-5px);
}

.donor-profile {
    display: flex;
    gap: 20px;
    padding: 25px;
    align-items: center;
}

.donor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.donor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donor-info {
    flex: 1;
}

.donor-name {
    font-size: 18px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 8px;
}

.donor-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.donor-amount {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

.solidarity-footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.solidarity-footer p {
    margin-bottom: 10px;
}

.inline-link {
    color: #f4b942;
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

/* Dreams Section */
.dreams-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dream-item {
    padding: 25px;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
}

.dream-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dream-item p {
    line-height: 1.6;
    font-size: 14px;
}

/* Final CTA Section */
.final-cta-section {
    margin: 60px 0 40px;
}

.final-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.final-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f4b942;
}

.final-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #f4b942;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #e8a635;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #f4b942;
    border: 2px solid #f4b942;
}

.btn-secondary:hover {
    background-color: #f4b942;
    color: #1a1a1a;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        padding: 0 15px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .donors-grid {
        grid-template-columns: 1fr;
    }
    
    .donor-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .dreams-content {
        grid-template-columns: 1fr;
    }
    
    .final-cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Sign-up Page Styles */
.signup-content {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-wrapper {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #1a1a1a;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.signup-form-section,
.donation-form-section {
    margin-bottom: 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.newsletter-form,
.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;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4b942;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #f4b942;
    border-color: #f4b942;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-label input[type="radio"]:checked + .radio-mark {
    border-color: #f4b942;
}

.radio-label input[type="radio"]:checked + .radio-mark::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #f4b942;
    border-radius: 50%;
}

.consent-checkbox {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.privacy-link {
    color: #f4b942;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 185, 66, 0.3);
}

/* Success Message */
.success-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.success-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.success-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.back-home-btn {
    background-color: #f4b942;
    color: #1a1a1a;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.back-home-btn:hover {
    background-color: #e8a635;
}

/* Stats Section */
.stats-section {
    margin: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.stats-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f4b942;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #f4b942;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    margin: 60px 0;
}

.testimonials-wrapper {
    text-align: center;
}

.testimonials-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Donate Page Specific Styles */
.donate-content {
    max-width: 1000px;
    margin: 0 auto;
}

.impact-section {
    margin-bottom: 60px;
}

.impact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #1a1a1a;
}

.impact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.impact-item p {
    color: #666;
    line-height: 1.6;
}

/* Donation Form Specific */
.donation-type,
.donation-amount {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    background: #f8f9fa;
}

.section-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.radio-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-text strong {
    color: #1a1a1a;
}

.radio-text small {
    color: #666;
    font-size: 13px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #f4b942;
    background-color: #f4b942;
    color: #1a1a1a;
}

.custom-amount {
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.custom-amount label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    z-index: 1;
}

.amount-input-wrapper input {
    padding-left: 40px;
    width: 200px;
}

.form-section {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    background: white;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-bottom: 2px solid #f4b942;
    padding-bottom: 8px;
}

.payment-methods {
    display: grid;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #f4b942;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-method input[type="radio"]:checked + .payment-mark {
    border-color: #f4b942;
}

.payment-method input[type="radio"]:checked + .payment-mark::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #f4b942;
    border-radius: 50%;
}

.payment-method input[type="radio"]:checked ~ .payment-info {
    color: #1a1a1a;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
}

.payment-info i {
    font-size: 20px;
}

.consent-group {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.donation-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.amount-display {
    font-size: 24px;
    font-weight: 700;
    color: #f4b942;
}

.donate-submit-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 25px;
}

.donate-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Bank Details Section */
.bank-details-section {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #f4b942;
}

.bank-info-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bank-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
}

.bank-item {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.bank-item:last-child {
    margin-bottom: 0;
}

.bank-item strong {
    color: #1a1a1a;
    display: inline-block;
    min-width: 140px;
}

.confirmation-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 20px;
    margin-top: 25px;
}

.confirmation-note p {
    margin-bottom: 8px;
    color: #856404;
}

.confirmation-note p:last-child {
    margin-bottom: 0;
}

/* Support Section */
.other-support-section {
    margin: 60px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.support-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.support-item p {
    color: #666;
    line-height: 1.6;
}

/* Transparency Section */
.transparency-section {
    margin: 60px 0;
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.transparency-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expense-breakdown {
    display: grid;
    gap: 25px;
}

.expense-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.expense-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.expense-percentage {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b942 0%, #e8a635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    flex-shrink: 0;
}

.expense-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expense-details p {
    color: #666;
    line-height: 1.5;
}

/* Thank You Section */
.thank-you-section {
    margin: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.thank-you-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd;
}

.contact-support {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #555;
}

.contact-support h4 {
    color: #f4b942;
    margin-bottom: 15px;
}

.contact-support p {
    margin-bottom: 8px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .form-container {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .impact-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .expense-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .amount-input-wrapper input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .form-section,
    .donation-type,
    .donation-amount {
        padding: 20px 15px;
    }
    
    .expense-percentage {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
