/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #4A4A4A;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: #4A4A4A;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D8A43A;
}

.nav-link.active {
    color: #D8A43A;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D8A43A;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Donate Dropdown */
.donate-dropdown {
    position: relative;
    display: inline-block;
}

.donate-btn {
    background: linear-gradient(45deg, #C03333, #D8A43A);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.donate-btn:hover {
    background: linear-gradient(45deg, #A82A2A, #C18C2A);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 51, 51, 0.4);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 300px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    z-index: 1001;
    margin-top: 0.5rem;
}

.dropdown-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dropdown-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.donate-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.about-hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: #D8A43A;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #D8A43A;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(216, 164, 58, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4A4A4A;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D8A43A;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

.image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Our Story Section */
.story-section {
    padding: 6rem 2rem;
    background: white;
}

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

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #D8A43A, #C03333);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D8A43A, #C03333);
    border-radius: 10px;
    z-index: 1;
    opacity: 0.1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.story-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Overview Section */
.overview-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.overview-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
}

.overview-item:nth-child(1) {
    border-top-color: #D8A43A;
}

.overview-item:nth-child(2) {
    border-top-color: #C03333;
}

.overview-item:nth-child(3) {
    border-top-color: #4A4A4A;
}

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

.overview-item h3 {
    font-size: 1.5rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.overview-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: currentColor;
}

.overview-item:nth-child(1) h3::after {
    background: #D8A43A;
}

.overview-item:nth-child(2) h3::after {
    background: #C03333;
}

.overview-item:nth-child(3) h3::after {
    background: #4A4A4A;
}

.overview-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.values-list li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4A4A4A;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Leadership Section */
.leadership-section {
    padding: 6rem 2rem;
    background: white;
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.leadership-title {
    font-size: 2.5rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.leadership-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.leader-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #D8A43A;
}

.leader-photo {
    height: 250px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.05);
}

.leader-info {
    padding: 2rem 1.5rem;
    text-align: center;
}

.leader-name {
    font-size: 1.3rem;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-role {
    font-size: 1rem;
    color: #C03333;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #D8A43A 0%, #C03333 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta-content {
    text-align: center;
    color: white;
}

.about-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.about-cta-primary {
    background: #FFFFFF;
    color: #C03333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-primary:hover {
    background: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #000000;
}

.about-cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    backdrop-filter: blur(10px);
}

.about-cta-secondary:hover {
    background: #FFFFFF;
    color: #C03333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #4A4A4A;
    color: #FFFFFF;
    padding: 4rem 2rem 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #666666;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D8A43A;
    transform: translateY(-2px);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D8A43A;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover,
.footer-link.active {
    color: #D8A43A;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #CCCCCC;
    font-size: 0.95rem;
}

.contact-item i {
    color: #D8A43A;
    width: 16px;
    margin-top: 2px;
}

.newsletter-text {
    color: #CCCCCC;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #666666;
    border-radius: 5px;
    background: #5A5A5A;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-input:focus {
    outline: none;
    border-color: #D8A43A;
    background: #666666;
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: #D8A43A;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #C03333;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #666666;
    padding: 1.5rem 0;
}

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

.copyright {
    color: #999999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #D8A43A;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* HERO SECTION ANIMATIONS */
.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* STORY SECTION ANIMATIONS */
.story-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.story-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.story-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease 0.3s;
}

.story-section.animated .story-text {
    opacity: 1;
    transform: translateX(0);
}

.story-image {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.5s;
}

.story-section.animated .story-image {
    opacity: 1;
    transform: translateX(0);
}

.story-image img {
    transition: all 0.5s ease;
}

.story-image:hover img {
    animation: pulse 2s infinite;
}

/* OVERVIEW SECTION ANIMATIONS */
.overview-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.overview-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.overview-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.overview-section.animated .overview-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.overview-section.animated .overview-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.overview-section.animated .overview-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.overview-item:hover {
    animation: float 3s ease-in-out infinite;
}

/* LEADERSHIP SECTION ANIMATIONS */
.leadership-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.leadership-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.leadership-title,
.leadership-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.leadership-section.animated .leadership-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.leadership-section.animated .leadership-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.leader-card {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease;
}

.leadership-section.animated .leader-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.leadership-section.animated .leader-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.leadership-section.animated .leader-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.leadership-section.animated .leader-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.leader-photo {
    overflow: hidden;
}

.leader-photo img {
    transition: all 0.5s ease;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* CTA SECTION ANIMATIONS */
.about-cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-cta-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.about-cta-section.animated .about-cta-title {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.about-cta-section.animated .about-cta-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}

.about-cta-section.animated .about-cta-buttons {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-btn {
    position: relative;
    overflow: hidden;
}

.about-cta-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;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .leadership-grid {
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .overview-grid {
        gap: 2rem;
    }
    
    .overview-item {
        padding: 2.5rem 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .leader-photo {
        height: 300px;
    }
    
    .about-cta-title {
        font-size: 2.5rem;
    }
    
    .about-cta-subtitle {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .donate-dropdown {
        margin-top: 1rem;
    }

    .dropdown-content {
        position: static;
        margin-top: 1rem;
        min-width: auto;
    }

    /* Hero Section */
    .about-hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

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

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

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .image-frame {
        padding-bottom: 70%;
        border-width: 6px;
    }

    /* Story Section */
    .story-section {
        padding: 4rem 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-image img {
        height: 300px;
    }

    /* Overview Section */
    .overview-section {
        padding: 4rem 1.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .overview-item {
        padding: 2rem 1.5rem;
    }
    
    .values-list {
        text-align: center;
    }
    
    .values-list li {
        padding-left: 0;
        padding-right: 0;
    }
    
    .values-list li::before {
        display: none;
    }

    /* Leadership Section */
    .leadership-section {
        padding: 4rem 1.5rem;
    }
    
    .leadership-title {
        font-size: 2rem;
    }
    
    .leadership-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .leader-photo {
        height: 350px;
    }
    
    .leader-info {
        padding: 2rem 1.5rem;
    }

    /* CTA Section */
    .about-cta-section {
        padding: 4rem 1.5rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-btn {
        width: 250px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .nav-logo img {
        height: 30px;
    }

    /* Hero Section */
    .about-hero {
        padding: 90px 0 30px;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-frame {
        padding-bottom: 70%;
        border-width: 4px;
        border-radius: 15px;
    }

    /* Story Section */
    .story-section {
        padding: 3rem 1rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-image img {
        height: 250px;
    }

    /* Overview Section */
    .overview-section {
        padding: 3rem 1rem;
    }
    
    .overview-item {
        padding: 1.5rem 1rem;
    }
    
    .overview-item h3 {
        font-size: 1.3rem;
    }
    
    .overview-item p,
    .values-list li {
        font-size: 1rem;
    }

    /* Leadership Section */
    .leadership-section {
        padding: 3rem 1rem;
    }
    
    .leadership-title {
        font-size: 1.8rem;
    }
    
    .leadership-subtitle {
        font-size: 1rem;
    }
    
    .leader-photo {
        height: 280px;
    }
    
    .leader-info {
        padding: 1.5rem 1rem;
    }
    
    .leader-name {
        font-size: 1.2rem;
    }
    
    .leader-bio {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .about-cta-section {
        padding: 3rem 1rem;
    }
    
    .about-cta-title {
        font-size: 1.8rem;
    }
    
    .about-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}