body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.header {
    background-color: #fff;
    color: rgb(243, 103, 103);
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.header .logo img {
    height: 50px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav ul li a {
    color: rgb(4, 77, 22);
    text-decoration: none;
}

.breadcrumb {
    background-color: #490a36;
    color: white;
    padding: 10px 20px;
}

.form-section {
    padding: 20px;
}

.form-section h1 {
    color: #006400;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px; /* Limit width of the form on desktop */
    margin: 0 auto; /* Center the form on desktop */
}

form label {
    font-weight: bold;
    font-size: 14px;
}

form input,
form select,
form button {
    padding: 10px;
    border: 1px solid #006400;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    background-color: #490a36;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #967b10;
}

.footer {
    background-color: #490a36;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.footer a {
    color: #967b10;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .form-section {
        padding: 15px;
    }

    form {
        gap: 10px;
        max-width: 100%; /* Allow form to use full width on smaller screens */
        padding: 0 10px;
    }

    form input,
    form select,
    form button {
        width: 100%;
        font-size: 16px;
    }

    .breadcrumb {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 40px;
    }

    form label {
        font-size: 12px;
    }

    form input,
    form select,
    form button {
        font-size: 14px;
    }

    .footer {
        padding: 10px 15px;
    }

    .footer p {
        font-size: 14px;
    }
}
