* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1d2671, #c33764);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.btn-main {
    display: inline-block;
    padding: 14px 30px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover {
    background: #e68900;
}

.section {
    padding: 80px 20px;
}

.bg-light {
    background: #f4f6f9;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.styled-list {
    margin-top: 15px;
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: #1d2671;
    color: white;
}
