body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9fafb;
    color: #111;
}

.container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 !important;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin: 5px;
    font-weight: bold;
}

.btn-primary {
    background: white;
    color: #1e40af;
}

.btn-primary:hover {
    background: #e0e7ff;
}

.btn-secondary {
    border: 1px solid white;
    color: white;
}

.btn-secondary:hover {
    border: 1px solid black;
    color: black;
}

/* SECTION */
.section {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.section:nth-child(even) {
    background: #f3f4f6;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 60px 20px;
}

.trust {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
}
