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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.section {
    padding: 60px 0;
}

.section.light {
    background-color: #f8fafc;
}

.section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.section p {
    max-width: 850px;
    margin-bottom: 20px;
}

.list {
    list-style: none;
}

.list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    background: #ffffff;
    padding: 20px;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

.timeline-item span {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.cta {
    background: #2563eb;
    color: #ffffff;
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: #ffffff;
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e0f2fe;
}

.footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}
