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

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #eef2f7;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a90e2 0%, #0074cc 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero .subheading {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background-color: #ffd700;
    color: #003366;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #ffe960;
    color: #002244;
}

/* Benefits List */
.benefits {
    margin-top: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
}

.benefits li {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Trust Section */
.trust-section {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #303030;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.trust-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #0074cc;
}

.trust-card p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px 20px;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
}

.footer-link {
    color: #ffd700;
    text-decoration: none;
    margin: 0 8px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .cta-btn {
        font-size: 1.4rem;
    }
    .trust-cards {
        flex-direction: column;
        align-items: center;
    }
}
