body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Header Section */
header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 20px;
    animation: fadeInUp 0.8s ease;
}

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

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

header p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Content Cards */
.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease backwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.card h2 {
    color: #212529;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.card h2 i {
    color: #0d6efd;
    margin-right: 15px;
    font-size: 1.5rem;
    vertical-align: middle;
}

.card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.card strong {
    color: #212529;
    font-weight: 700;
}

/* Section Titles */
h2.section-title {
    text-align: center;
    color: #212529;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 70px 0 40px;
    position: relative;
    background: linear-gradient(135deg, #212529, #495057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border-radius: 2px;
}

/* Team Members */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease backwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.15s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.25s; }
.team-member:nth-child(5) { animation-delay: 0.3s; }

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
}

.team-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.team-img i {
    font-size: 2.5rem;
    color: white;
}

.team-info h3 {
    color: #212529;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-info p {
    color: #6c757d;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-text {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px 30px;
    margin-top: 60px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
}

footer p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    color: #0d6efd;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: white;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    .content {
        grid-template-columns: 1fr;
    }
    
    .team {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    h2.section-title {
        font-size: 2rem;
    }
}
