/* ===== RESET & BASIC STYLES ===== */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    /* Change background color */
    color: #333;
}

/* ===== HEADER ===== */
header {
    background-color: #1e1e2f;
    /* Header background */
    color: white;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

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

.hero button {
    background-color: #4f46e5;
    /* Button color */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #4338ca;
}

.hero #quote {
    margin-top: 20px;
    font-style: italic;
    color: #555;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
}

.service-box {
    background-color: white;
    padding: 20px;
    margin: 10px auto;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
footer {
    background-color: #1e1e2f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}