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

/* Base styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f8fa;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero section */
.hero {
    background: linear-gradient(120deg, #2e3a59 0%, #4e8cff 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #2e3a59;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(46,58,89,0.08);
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: #2e3a59;
    color: #fff;
}

/* Content sections */
.content-section {
    padding: 50px 0;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(46,58,89,0.04);
}

.content-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2e3a59;
    text-align: center;
}

/* Projects */
.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.project {
    background: #f2f6ff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 1px 6px rgba(46,58,89,0.06);
    min-width: 220px;
    max-width: 320px;
    text-align: center;
}

.project h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4e8cff;
}

.project a {
    display: inline-block;
    margin-top: 12px;
    color: #2e3a59;
    background: #eaf1ff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.project a:hover {
    background: #4e8cff;
    color: #fff;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    justify-items: center;
    margin-top: 20px;
}

.team-member {
    background: #f7f8fa;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 0 1px 6px rgba(46,58,89,0.04);
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.profile-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 3px solid #4e8cff;
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #2e3a59;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
}

/* Footer */
footer {
    background: #2e3a59;
    color: #fff;
    padding: 24px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 700px) {
    .container {
        padding: 0 0.5rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .content-section h3 {
        font-size: 1.4rem;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 18px;
    }
    .project {
        min-width: 160px;
        padding: 16px 8px;
    }
}