body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f8f8;
    color: #333;
}

.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1528747045269-390fe33c19f2') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.tagline {
    font-size: 20px;
    margin-top: 10px;
}

.cta-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    background: #cda434;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
}

.section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    margin: 10px 0;
    font-size: 18px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.team-card h3 {
    margin: 0;
    font-size: 22px;
}

.team-card p {
    margin-top: 8px;
    font-size: 16px;
}

footer {
    text-align: center;
    background: #222;
    color: #ccc;
    padding: 20px;
    font-size: 14px;
}
