* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

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

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #1a73e8;
    color: white;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a.active,
.nav-links a:hover {
    text-decoration: underline;
}

/* HEADER / BANNER */
.banner {
    padding: 80px 20px;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1506765515384-028b60a970df') center/cover;
    color: white;
}

.banner input {
    margin-top: 15px;
    padding: 10px;
    width: 250px;
    border-radius: 5px;
    border: none;
}

.banner button {
    padding: 10px 18px;
    margin-left: 10px;
    background: #ff9800;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

/* ABOUT SECTION */
.about, .profile-content {
    padding: 40px 20px;
}

.vision-mission {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
}

.box {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* PROFILE BANNER */
.profile-banner {
    background: #0d47a1;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* CONTACT FORM */
.form-section {
    padding: 40px 20px;
}

form {
    background: white;
    padding: 25px;
    max-width: 450px;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    width: 100%;
    padding: 10px;
    background: #1a73e8;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.result {
    margin-top: 25px;
    text-align: center;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
    }
}
/* FOOTER */
.footer {
    background: #1a73e8;
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin-top: 40px;
}