body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea; /* Slightly darker light gray for a softer background */
}

.container {
    max-width: 1200px; /* Adjust this value as needed */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding for spacing */
    background-color: #ffffff; /* Keep container background white if needed */
}

.ut-tower-photo {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.navbar {
    background-color: #BF5700; /* Burnt Orange */
}

.navbar ul {
    list-style-type: none;
    padding: 0;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    display: inline-block;
    color: white; /* Keep text color white for contrast */
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #e07b39; /* Slightly lighter shade */
}

.about-section, footer {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 8px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    margin-bottom: 25px; /* Adjust this value for more or less space */
}

.teaching-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px; /* Add some space above the teaching list */
}

.teaching-list li {
    margin-bottom: 15px;
}

.instructor {
    display: block; /* Ensures the instructor's name is on a new line */
    margin-left: 20px; /* Indent for visual separation */
}

.profile-photo {
    max-width: 450px; /* Adjust size as needed */
    height: auto; 
    margin-left: 20px; /* Space between text and image */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

footer p {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

footer i {
   color: white;
}

footer {
    background-color: #BF5700; /* Burnt Orange */
    color: white; /* Text color for contrast */
    text-align: center;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #BF5700; /* Burnt Orange */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
   background-color: #e07b39; /* Slightly lighter shade for hover effect */
}

/* Responsive Design */
@media (max-width: 600px) {
   .about-content {
       flex-direction: column; 
       align-items:center; 
   }

   .profile-photo { 
      margin-left :0; /* Remove left margin for better centering */ 
      margin-top :20px; /* Add top margin for spacing */ 
   }
}