/* ----------------------- */
/* GLOBAL SETTINGS         */
/* ----------------------- */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f6f6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ----------------------- */
/* HEADER                  */
/* ----------------------- */
.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    font-size: 18px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    margin-left: 15px;
}

.nav a.active {
    color: #0066ff;
}

/* ----------------------- */
/* HERO SECTION            */
/* ----------------------- */
.hero {
    text-align: center;
    padding: 80px 20px;
    color: white;
    background:
        linear-gradient(to bottom right, rgba(30, 30, 30, 0.5), rgba(0, 0, 0, 0.7)),
        url("https://i.imgur.com/qs0h8CS.jpeg") no-repeat center center;
    background-size: cover;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #e6e6e6;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: #0066ff;
    color: white;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.btn-primary:hover {
    background: #004ecc;
}

.btn-ghost {
    border: 2px solid #0066ff;
    color: #0066ff;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
}

.btn-ghost:hover {
    background: #0066ff;
    color: white;
}

/* ----------------------- */
/* WHAT WE DO SECTION      */
/* ----------------------- */
.section {
    background: white;
    padding: 50px 0;
    margin-top: 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 0;
}

/* ----------------------- */
/* NEED HELP NOW SECTION   */
/* ----------------------- */
.section-accent {
    background: #eef4ff;
    padding: 50px 0;
}

.check-list li {
    margin: 8px 0;
}

/* ----------------------- */
/* FOOTER                  */
/* ----------------------- */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}
