* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7ff;
    color: #333;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #112d63, #345bcb);
    color: white;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-image img {
    width: 420px;
    border-radius: 20px;
}

.btn-primary {
    padding: 12px 30px;
    background: #ff3c5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
}

/* Features */
.features {
    padding: 60px 10%;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 25px;
    width: 30%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 10%;
}

.about-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
}

.about-text ul {
    margin: 20px 0;
}

.about-text ul li {
    margin: 8px 0;
    font-size: 16px;
}

.btn-secondary {
    padding: 10px 25px;
    background: #345bcb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

/* Testimonials / Team */
.team {
    text-align: center;
    padding: 60px 10%;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    width: 28%;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-card span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #112d63;
    color: white;
    margin-top: 60px;
}

/* Responsive */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .features .feature-grid,
    .team .team-grid,
    .about {
        flex-direction: column;
        width: 100%;
    }

    .feature-box,
    .team-card {
        width: 90%;
    }
}
