/* Global Styles */
.header{
  margin-bottom: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

section {
  padding: 0 15%; 
}

@media (max-width: 768px) {
  section {
    padding: 0 5%;
  }
}

section + section {
  margin-top: 60px;  
}

h2 {
  text-align: center;
  font-size: 36px;
  color: #333;
}

p, 
ul,
li {
  margin-left: auto; 
  margin-right: auto;
}


/* About Section */

#about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about h2 {
  color: #fff;
}

.column {
  transition: transform 0.3s ease;
  background: #CD5C16;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #fff;
  font-size: 18px;  
  flex: 0 1 calc(50% - 10px); /* Adjust the width and margin as needed for two columns */
  margin: 5px;
  padding: 10px;
  border: 1px solid #fff ;
  box-sizing: border-box;
  box-sizing: border-box;
}

.column-1 {
  transition: transform 0.3s ease;
  background: #CD5C16;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #fff;
  border: 1px solid #ccc;
  font-size: 18px;  
}

@media (max-width: 600px) {

  #about p {
    padding: 15px;
  }

  #about ul {
    flex-wrap: wrap;
  }
  
  #about li {
    margin: 10px 0;
  }

}
.column:hover{
  transform: scale(1.1);
}
.column-1:hover{
  transform: scale(1.1);
}

.column-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Adjust alignment as needed */
}

.column {
}
.program__acc-head{
  color: #333;
}
.program__acc-text {
  color: #818181;
}
.qna {
  margin-bottom: 30px;
}
.heading__title{
  margin-bottom: 30px;
}