/* Global */
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.6)),
        url("https://i.imgur.com/qs0h8CS.jpeg") no-repeat center center;
    background-size: cover;
}


.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

.btn {
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
}

.btn.primary {
    background: #0066ff;
    color: white;
}

.btn.ghost {
    border: 2px solid #0066ff;
    color: #0066ff;
}

/* Section & Cards */
.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);
}

/* Accent Section */
.section.accent {
    background: #eef4ff;
}

.check-list li {
    margin: 8px 0;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}
