/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0066cc;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* ===== Header ===== */
header {
    background: #1e2a38;
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
}

nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #00bfff;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(to right, #1e2a38, #2f4055);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
}

/* ===== Sections ===== */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 15px;
}

/* ===== Footer ===== */
footer {
    background: #1e2a38;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #00bfff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
}
