* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-page {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(120deg, #4f46e5, #2563eb);
    color: white;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

.header-accent {
    height: 6px;
    width: 100px;
    background: linear-gradient(90deg, #4cd964, #2c3e50);
    margin: 20px auto;
    border-radius: 3px;
}

/* Cards Layout */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4cd964, #2c3e50);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4cd964, #3ab553);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(76, 217, 100, 0.3);
}

.card-title {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.card-content {
    flex-grow: 1;
}

.card-content p {
    margin-bottom: 18px;
    color: #5a6b82;
    font-size: 1.08rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin: 25px 0;
}

.process-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border-left: 4px solid #4cd964;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.process-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.trust-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.trust-item h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon {
    color: #4cd964;
    margin-right: 14px;
    font-size: 1.5rem;
    background: rgba(76, 217, 100, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Commitment List */
.commitment-list {
    list-style-type: none;
    margin: 25px 0;
}

.commitment-list li {
    margin-bottom: 14px;
    padding-left: 40px;
    position: relative;
    color: #5a6b82;
    font-size: 1.08rem;
}

.commitment-list li:before {
    content: "✓";
    color: #4cd964;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.4rem;
    background: #f0f9f1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(76, 217, 100, 0.2);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f0f9f1 0%, #e4f5e7 100%);
    padding: 32px;
    border-radius: 18px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid #d4eed9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 35px;
}

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #4cd964;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

.team-member p {
    color: #5a6b82;
    font-size: 1.1rem;
}

/* Mission Stats */
.mission-stats {
    background: linear-gradient(135deg, #4cd964, #2c3e50);
    color: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    margin: 30px 0;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(76, 217, 100, 0.3);
}

/* Card Footer */
.card-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeef2;
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #4cd964, #3ab553);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 217, 100, 0.3);
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 217, 100, 0.4);
}

/* Stat Highlight */
.stat-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4cd964;
    display: block;
    margin: 15px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4cd964;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .process-grid,
    .trust-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.6s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

.card:nth-child(4) {
    animation-delay: 0.6s;
}

.card:nth-child(5) {
    animation-delay: 0.8s;
}
/* Make sure body takes full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main content should grow to fill space */
.about-page {
    flex: 1;
}


.page-footer {
    clear: both !important;
    width: 100% !important;
    clear: both !important;
    flex: 0 0 100% !important;
    text-align: center !important;
    background: #111 !important;  /* dark background for contrast */
    color: #fff !important;
    padding: 20px !important;
    margin-top: auto !important;
    display: block !important;
}
.site-content {
    display: block !important;   /* cancels flex */
    width: 100% !important;
}

.page-footer .social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 15px 0 !important;
}

.page-footer i {
    font-size: 20px !important;
}
