body {
    background-color: aliceblue;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    justify-content: space-between;
    align-items: center;
    display: flex;
    background-color: white;
    padding: 20px 70px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logoimg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

nav a {
    text-decoration: none;
    color: #ccc;
    margin-left: 30px;
    font-size: 19px;
}

nav a:hover {
    color: orange;
}

.banner {
    height: 80vh;
    background-color: cadetblue;
    justify-content: center;
    justify-items: center;
    align-items: center;
    display: flex;
    text-align: center;
    color: white;
}

div h2 {
    margin-bottom: 30px;
    font-size: 55px;
}

.p {
    font-size: 25px;
    margin-bottom: 20px;
}

.muangay {
    border: none;
    padding: 5px 8px;
    border-radius: 8px;
    background-color: orange;
    color: white;
    font-size: 15px;
}

.muangay:hover {
    background: darkorange;
    transform: scale(1.05);
}

.tsp {
    color: #ccc;
    text-align: center;
}

.spp {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sp {
    padding: 10px 15px;
    background-color: white;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.img {
    width: 100%;
    border-radius: 8px;
}

.button {
    border: none;
    background-color: aqua;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
}

.button:hover {
    background-color: aquamarine;
    transform: scale(1.05);
}

.dh {
    text-align: center;
}

form {
    width: 350px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
}

label {
    display: block;
    margin-top: 15px;
}

.gui {
    border: none;
    font-size: 15px;
    color: white;
    transition: 0.3s;
    padding: 5px 8px;
    border-radius: 8px;
    width: 100%;
    background-color: orange;
}

.gui:hover {
    background-color: darkorange;
    transform: scale(1.03);
}