/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7faff;
    color: #333;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 4px solid #4bb4ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4bb4ff;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* HERO BOX */
.hero-box {
    background: #4bb4ff;
    margin: 40px auto;
    padding: 60px 40px;
    max-width: 900px;
    text-align: center;
    border-radius: 30px;
    color: white;
}

.hero-sub {
    font-size: 22px;
    margin: 10px 0 20px;
}

.hero-btn {
    background: #ffdb4d;
    padding: 15px 35px;
    border-radius: 40px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

/* FEATURES */
.features {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 30%;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    text-align: center;
}

/* PAGE BOX */
.page-box {
    max-width: 900px;
    background: white;
    padding: 40px;
    border-radius: 25px;
    margin: 60px auto;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ccc;
}

.contact-form button {
    padding: 15px;
    background: #ffdb4d;
    font-weight: bold;
    border-radius: 15px;
    border: none;
}

/* FOOTER */
footer {
    margin-top: 60px;
    background: #333;
    color: white;
    padding: 25px;
    text-align: center;
}

