* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-top: 10px;
    height: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logoimg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.logo-text strong {
    color: #2c5aa0;
    font-weight: 700;
}

.logo-text small {
    color: #666;
    font-size: 0.7rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: #2c5aa0;
}

.nav-links a.active {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
}

.btn-donate {
    background: #ff6b35 !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-donate:hover {
    background: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-support {
    background: #2c5aa0 !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-support:hover {
    background: #1e3f73 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.btn-involved {
    background: #ffc107 !important;
    color: #333 !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-involved:hover {
    background: #e0a800 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c5aa0;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(44, 90, 160, 0.1);
}

.tweet-btn {
    width: 100%;
    padding: 12px 24px;
    background: #1da1f2;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tweet-btn:hover {
    background: #1a91da;
    transform: translateY(-1px);
}

.mobile-nav-links a[href*="donate"]::before {
    content: '💳';
    filter: none;
}

.mobile-nav-links a[href*="support"]::before {
    content: '🛠️';
    filter: none;
}

.mobile-nav-links a[href*="posts"]::before {
    content: '📝';
    filter: none;
}

.mobile-nav-links a[href*="gallery"]::before {
    content: '🖼️';
    filter: none;
}

.mobile-nav-links a[href*="contact"]::before,
.mobile-nav-links a.btn-involved::before {
    content: '📞';
    filter: none;
}

/* Newsletter Section */
.mobile-nav-newsletter {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.mobile-nav-newsletter h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mobile-nav-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-nav-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-nav-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-newsletter input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-newsletter button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-newsletter button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.mobile-nav-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('img/newwalkathonimg.jfif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hashtag {
    color: #17a2b8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.1;
    font-weight: 300;
}

.italic-text {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: #17a2b8;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-primary:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.btn-play {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    color: #17a2b8;
}

/* Cancer Data Section */
.cancer-data {
    background: linear-gradient(135deg, #1e3a5f, #2c5aa0);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cancer-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,0 1200,0 1000,400 0,400"/></svg>');
    background-size: cover;
}

.cancer-data .container {
    position: relative;
    z-index: 2;
}

.cancer-data-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.data-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 60px;
    font-weight: 400;
}

.data-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.data-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.data-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.data-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: inline-block;
}

.data-unit {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
}

.data-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 15px;
    line-height: 1.4;
}

.know-more-data-btn {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.know-more-data-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-vision-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.mission-vision-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-vision-carousel {
    margin-bottom: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon svg {
    transform: scale(1.1);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.mission-values {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.mission-values p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Mission Carousel Customization */
#mission-carousel .splide__pagination {
    bottom: -50px;
}

#mission-carousel .splide__pagination__page {
    background: #ddd;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#mission-carousel .splide__pagination__page.is-active {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Connect With Us Section */
.connect-section {
    padding: 80px 0;
    background: white;
}

.connect-header {
    text-align: center;
    margin-bottom: 80px;
}

.connect-header h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0;
}

.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.connect-card {
    background: white;
    padding: 60px 40px 50px 40px;
    text-align: left;
    box-shadow: none;
    border: 1px solid #000000;
    margin-right: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.connect-card:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.connect-card h3 {
    font-size: 1.6rem;
    color: #2c5aa0;
    margin-bottom: 25px;
    font-weight: 600;
}

.connect-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: auto;
    text-align: left;
    flex-grow: 1;
}

.connect-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-top: 30px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.connect-btn:hover {
    background: #1e3f73;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(44, 90, 160, 0.3);
}

/* Collaborators Section */
.collaborators-section {
    background: white;
    padding: 80px 0;
}

.collaborators-header {
    text-align: center;
    margin-bottom: 60px;
}

.collaborators-header h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: 600;
}

.collaborator-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.collaborator-card:hover {
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.collaborator-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.collaborator-card:hover .collaborator-logo {
    filter: grayscale(0%);
}

/* Splide customization */
.splide__arrow {
    background: #2c5aa0 !important;
    opacity: 0.8;
}

.splide__arrow:hover {
    opacity: 1;
}

.splide__pagination__page {
    background: #2c5aa0 !important;
}

/* About CFI Section */
.about-cfi {
    background: #fff;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.conference-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.know-more-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* About Founder Section */
.about-founder {
    background: linear-gradient(135deg, #e91e63, #f06292);
    padding: 80px 0;
    color: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.founder-quote {
    padding-right: 40px;
}

.founder-quote blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 300;
    quotes: """ """ "'" "'";
}

.founder-quote blockquote:before {
    content: open-quote;
    font-size: 4rem;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

.quote-author {
    font-size: 16px;
}

.quote-author strong {
    font-size: 18px;
    font-weight: 600;
}

.quote-author span {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.founder-image {
    text-align: center;
}

.founder-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.gold-ribbon {
    color: #FFD700;
}

/* Statistics Section */
.stats {
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Facts Section */
.facts {
    background: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-card {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.fact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Help Section */
.help {
    background: #f8f9fa;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.help-button {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: #FFA500;
}

/* Resources Section */
.resources {
    background: white;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.resource-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.resource-item a {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.resource-item a:hover {
    text-decoration: underline;
}

/* What do we support Section */
.what-we-support {
    background: #fff;
    padding: 100px 0;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.support-text h2 {
    font-size: 4rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.support-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.learn-more-btn {
    display: inline-block;
    background: transparent;
    color: #8b5cf6;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #8b5cf6;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #8b5cf6;
    color: white;
}

/* Global Impact Section */
.global-impact {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    padding: 100px 0;
    text-align: center;
}

.global-impact .impact-header h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 600;
}

.global-impact .impact-subtitle {
    color: #666;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 60px;
    font-weight: 500;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat {
    text-align: center;
    min-width: 150px;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1;
    display: inline-block;
}

.impact-plus {
    font-size: 2.5rem;
    color: #2c5aa0;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
}

.impact-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    margin-top: 10px;
    font-weight: 600;
}

/* FAQs Section */
.faqs-section {
    background: #fff;
    padding: 100px 0;
}

.faqs-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-sidebar h2 {
    font-size: 4rem;
    color: #8d8f91;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    min-width: 40px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2c5aa0;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 60px;
}

.faq-answer.active {
    max-height: 200px;
    padding-top: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Latest Posts Section */
.latest-posts {
    background: #f8f9fa;
    padding: 100px 0;
}

.posts-header {
    text-align: center;
    margin-bottom: 60px;
}

.posts-header h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    font-weight: 600;
}

.posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.post-image {
    position: relative;
    overflow: hidden;
}

.post-card.large .post-image {
    height: 300px;
}

.post-card:not(.large) .post-image {
    height: 200px;
}

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

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-card.large .post-content h3 {
    font-size: 1.5rem;
}

.post-meta {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: #ffffff;
    color: rgb(0, 0, 0);
}

.footer-main {
    padding: 60px 0 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logoimg {
    width: 60px;
    height: auto;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 5px 0;
    color: rgb(0, 0, 0);
    text-align: left;
}

.footer-brand p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-social-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-bottom p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-linkedin {
    background: #0077b5;
    color: rgb(255, 255, 255);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.social-btn {
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.data-knowledge {
    background: #ffc107;
    color: #333;
}

.social-btn.donate {
    background: #ff6b35;
    color: white;
}

.social-btn:hover {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        width: 280px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .logo-text small {
        font-size: 0.6rem;
    }
    
    .what-we-support .support-text h2 {
        font-size: 2.5rem;
    }
    
    .faqs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faqs-sidebar h2 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.5rem;
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 15px;
    }
    
    .impact-stats {
        gap: 40px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .mission-vision-header h2 {
        font-size: 2rem;
    }
    
    .mission-vision-header p {
        font-size: 1.1rem;
    }
    
    .mission-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-header {
        margin-bottom: 40px;
    }
    
    .mission-vision-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-vision-header p {
        font-size: 1rem;
    }
    
    .mission-card {
        padding: 25px 15px;
        margin: 0;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p {
        font-size: 0.9rem;
    }
    
    .mission-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .mission-values {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .mission-values p {
        font-size: 0.9rem;
    }
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .logoimg {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.7rem;
    }
    
    .logo-text small {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-play {
        width: 100%;
        max-width: 300px;
    }
    
    .what-we-support .support-text h2 {
        font-size: 2rem;
    }
    
    .connect-cards {
        grid-template-columns: 1fr;
    }
    
    .collaborators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .stats-grid,
    .facts-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .logo-text strong {
        font-size: 12px;
    }

    .logo-text small {
        font-size: 10px;
    }

    /* About sections responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-quote {
        padding-right: 0;
        order: 2;
    }

    .founder-image {
        order: 1;
    }

    .founder-img {
        width: 250px;
        height: 250px;
    }

    .stats-row {
        gap: 40px;
    }

    /* New sections responsive */
    .data-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .connect-cards {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .connect-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .connect-card {
        padding: 40px 30px;
        min-height: auto;
    }

    .collaborator-card {
        margin: 0 5px;
    }

    /* Footer responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Awareness ribbon animation */
.ribbon {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.ribbon::before {
    content: "🎗️";
    font-size: 1.2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.dropdown-link {
    display: block; 
    padding: 15px 45px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
    font-size: 16.1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.2px;
}
.dropdown-link.btndrop {
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    margin: 8px 20px;
    display: inline-block;
    width: 120px;
    height: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    font-weight: 500;
    line-height: 21px;
}

/* About button - Blue */
.dropdown-link.btn-about {
    width: 85px;
    height: 40px;
    background: #2c5aa0 !important;
    color: white !important;
    padding: 0.7rem 1.2rem 0.4rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.dropdown-link.btn-about:hover {
    background: linear-gradient(135deg, #357abd, #2a5d8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #4a90e266;
    color: white;
}

/* Donate button - Orange */
.dropdown-link.btn-donate-drop {
    width: 103px;
    height: 42px;
    background: #ff6b35 !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.dropdown-link.btn-donate-drop:hover {
    background: linear-gradient(135deg, #e55a2b, #cc4a21);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Get Support button - Blue */
.dropdown-link.btn-support-drop {
    width: 140px;
    height: 45px;
    background: #2c5aa0 !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.dropdown-link.btn-support-drop:hover {
    background: linear-gradient(135deg, #357abd, #2a5d8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    color: white;
}
.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:first-child {
    border-radius: 0;
}


.dropdown-link.active {
    background-color: #3498db;
    color: white;
}

.dropdown-link.active:hover {
    background-color: #2980b9;
    color: white;
}

/* Position dropdown menu relative to header nav */
header nav {
    position: relative;
}

/* Hide regular nav-links on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 10px;
    }
}
