/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #2d3436;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #2b32b2;
    margin-bottom: 30px;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-section strong {
    color: #2b32b2;
}

.about-section a {
    color: #1488cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #2b32b2;
}

/* Founders Section */
.founders {
    margin-top: 60px;
}

.founders h2 {
    font-size: 2rem;
    color: #2d3436;
    text-align: center;
    margin-bottom: 40px;
}

.founder-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    border: 2px solid #ffd700;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-card h3 {
    color: #2b32b2;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.founder-card p {
    color: #636e72;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

.how-it-works h2 {
    font-size: 2rem;
    color: #2b32b2;
    text-align: center;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step h3 {
    color: #2b32b2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: #636e72;
    font-size: 0.95rem;
}

.step::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #1488cc;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step:nth-child(1)::before {
    content: '1';
}
.step:nth-child(2)::before {
    content: '2';
}
.step:nth-child(3)::before {
    content: '3';
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-card {
        margin: 15px;
    }
}

@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2rem;
    }
    
    .founders h2 {
        font-size: 1.8rem;
    }
    
    .how-it-works h2 {
        font-size: 1.8rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section h1 {
        font-size: 1.8rem;
    }
    
    .founder-card {
        margin: 10px 0;
    }
    
    .step {
        padding: 30px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section,
.how-it-works {
    animation: fadeIn 0.8s ease-out;
}

.founder-card,
.step {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}