/* Developer Story Section */
.developer-story {
    background: linear-gradient(to right, #2a2a2a, #111);
    padding: 40px;
    margin-top: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.developer-story h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f03a47;
}

.developer-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

.developer-story p:last-child {
    font-style: italic;
    color: #f97e2e;
}

/* About Developers Section */
.about-developers {
    background: linear-gradient(to right, #2a2a2a, #111);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.about-developers h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-developers p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Meet the Team Section */
.meet-the-team {
    background: #111;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.meet-the-team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: center;
    color: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-card .team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card .team-info p {
    font-size: 1rem;
    color: #ccc;
}