body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff5e6;
    color: #333;
    width: 100%;
    overflow-x: visible; /* Prevent horizontal scrolling */
}
header {
    background-color: #ff8c00;
    color: white;
    padding: 20px;
    text-align: center;
}
nav {
    background-color: #ffa500;
    padding: 10px;
    text-align: center;
    line-height: 22px;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
}
nav a:hover{
    color: black;
}
nav .active{
    color: black;
}
.description{            
    text-align: center;
    color: black;
    background-color: white;
    border-bottom: 6px orange solid;
}
.description, .universities, .blog {
    padding: 20px;
}
.university {
    display: flex;
    flex-wrap: wrap; /* Ensure content wraps on small screens */
    align-items: center;
    margin: 30px 0;
    margin-bottom: 60px;
}
.university img {
    width: 50px;
    height: 50px;
    border-radius: 0px;
    margin-right: 20px;
    margin-bottom: 10px;
    display: inline-flex;
}
.university .status{
    padding-left: 10px;
}
.university .open{
    border-left: 3px #00d500 solid;
}
.university .closed{
    border-left: 3px #d50000 solid;
}
.university-details {
    flex-grow: 1;
    min-width: 0; /* Prevent overflow */
}
.university-details h3{
    margin: 8px 0;
}
.university-details p b{
    font-weight: bolder;
    font-size: 18px;
    letter-spacing: 1.6px;
    color: #000;
}
.university-details p{
    font-weight: lighter;
    font-size: 16px;
    letter-spacing: 1.3px;
    margin: 12px;
    color: #555;
}
.university button {
    background-color: #ff8c00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.university button a{
    text-decoration: none;
    color: white;
    letter-spacing: 1.1px;
}
.blog{
    margin-bottom: 20px;
}
.blog p{
    color: #555;
}

/* Form start */
.contact-form {
    padding: 20px;
}
.contact-form h2 {
    color: #ff8c00;
}
.contact-form label {
    display: block;
    margin-bottom: 10px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
.contact-form button {
    background-color: #ff8c00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%; /* Make button full width on mobile */
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
@media (max-width: 600px) {
    .contact-form button {
        width: 100%; /* Make button full width on mobile */
    }
}

/* Form ends */


footer {
    background-color: #ffa500;
    color: white;
    text-align: center;
    padding: 20px 10px;
    max-width: 100%;
    bottom: 0;
    overflow-x: visible; /* Prevent horizontal scrolling */
}
footer a{
    max-width: 100%;
    margin: 5px auto;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
footer a:hover{
    color: black;
}

.btn{
    max-width: 250px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
}
.whatsapp{
    background-color: #00d500;
}