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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f6fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.donate-btn {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%);
    z-index: 1;
}

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

.hero-text {
    margin-bottom: 4rem;
}

.welcome-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: var(--accent-color);
    color: var(--white);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn.primary:hover {
    background: #c0392b;
}

.hero-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.hero-stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Update Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

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

    .hero-stats {
        gap: 2rem;
        padding: 1.5rem;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-stat-item .stat-number {
        font-size: 1.8rem;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    margin-bottom: 3rem;
}

.highlight-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-mission-vision {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 3rem;
}

.about-mission, .about-vision {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-mission::before, .about-vision::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-mission:hover, .about-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-mission h3, .about-vision h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-mission h3::before, .about-vision h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-mission p, .about-vision p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    padding-left: 1rem;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

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

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

@media (max-width: 992px) {
    .about-main {
        gap: 4rem;
    }
    
    .about-text {
        padding-right: 0;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .experience-badge {
        right: 20px;
        padding: 1.5rem;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .about-mission-vision {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-mission, .about-vision {
        padding: 1.5rem;
    }
}

/* Scholarship Section */
.scholarship {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.scholarship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    z-index: 1;
}

.scholarship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.scholarship-text {
    padding-right: 2rem;
}

.scholarship-description {
    margin: 2rem 0;
}

.scholarship-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.scholarship-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.scholarship-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

@media (max-width: 992px) {
    .scholarship-content {
        gap: 3rem;
    }
    
    .scholarship-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .scholarship {
        padding: 6rem 0;
    }

    .scholarship-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .scholarship-image {
        max-width: 100%;
    }

    .scholarship-image img {
        height: 300px;
    }
}

/* Medical Camps Section */
.medical-camps {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

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

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

.camp-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Activities Section */
.activities {
    padding: 8rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    z-index: 1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.activity-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }

    .contact-list {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

/* How Can You Help Section */
.help {
    padding: 8rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    z-index: 1;
}

.help-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.help-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .help {
        padding: 6rem 0;
    }

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .about-main {
        gap: 4rem;
    }
    
    .about-text {
        padding-right: 0;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-list {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .experience-badge {
        right: 20px;
        padding: 1.5rem;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

    .activities {
        padding: 6rem 0;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        padding: 2rem 1.5rem;
    }

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

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

    .help {
        padding: 6rem 0;
    }

    .contact-list {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

.account-details {
    position: relative;
    z-index: 2;
    margin: 3rem 0;
}

.account-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.account-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.account-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.account-list {
    list-style: none;
    padding: 0;
}

.account-list li {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.account-list li:last-child {
    border-bottom: none;
}

.account-list li:hover {
    background: var(--light-gray);
    border-radius: 10px;
}

.account-list .label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 150px;
    font-size: 1.1rem;
}

.account-list .value {
    color: var(--text-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .account-card {
        padding: 2rem;
    }

    .account-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .account-list .label {
        min-width: auto;
    }
}

/* Founder Page Styles */
.founder {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.founder-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.founder-image {
    flex: 1;
    max-width: 400px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-text {
    flex: 2;
}

.founder-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.founder-description p {
    margin-bottom: 20px;
}

.founder-achievements {
    margin: 30px 0;
}

.founder-achievements h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.founder-achievements ul {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.founder-achievements li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.founder-message {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.founder-message h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.founder-message p {
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
    }

    .founder-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Trustees Section Styles */
.trustees {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.trustees-content {
    margin-top: 50px;
}

.trustees-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
}

.trustee-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trustee-item:hover {
    transform: translateY(-5px);
}

.trustee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trustee-icon i {
    font-size: 32px;
    color: #2c3e50;
}

.trustee-item h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.trustee-item p {
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .trustees-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .trustee-item {
        padding: 20px;
    }
} 