.course-list p {
  font-size: 14px;
  font-weight: 700;
 color: rgba(255, 255, 255, .88);
  margin: 0 0 2px 0;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.course-list a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  padding: 2px 4px;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Playfair Display", serif;
}

.course-list a:hover {
  color: #ffffff;
  transform: scale(1.05);
  font-family: "Playfair Display", serif;
}

.separator {
  font-weight: 400;
  opacity: 0.5;
  padding: 0 4px;
  font-family: "Playfair Display", serif;
}

.content-spacer {
  height: 1000px;
  background: #ffffff;
  padding: 50px;
  text-align: center;
  color: #002147;
  font-family: "Playfair Display", serif;
}



/*FORM EDIT*/
.form-row-group {
  display: flex;
  gap: 8px; /* Reduced gap to fit three items */
  margin-top: 5px;
}

.form-row-group select {
  flex: 1; 
  min-width: 0; /* Prevents dropdowns from breaking the row */
  padding: 10px 5px; /* Slightly tighter padding */
  font-size: 13px; /* Smaller font to ensure text isn't cut off */
}

/* On mobile, stack them so they remain clickable */
@media (max-width: 480px) {
  .form-row-group {
    flex-direction: column;
  }
}

.logoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.logoBox {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 46, 0.08);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logoBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.logoBox img {
  max-width: 100%;
  max-height: 60px; /* Uniform height for all logos */
  object-fit: contain;
}


/* scroll top btn css */
button.scroltop {
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    border-color: #efbb20;
    border-radius: 20px;
    border-style: solid;
    border-width: 0;
    bottom: 15px;
    box-shadow: 2px 2px 12px -5px #000000;
    color: #efbb20;
    cursor: pointer;
    display: none;
    height: 40px;
    line-height: 26px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 40px;
    z-index: 999;
}


.frame button.scroltop{
	right:50px;
	bottom:50px;
}
@media only screen and (max-width: 1024px) {
	.frame {
		padding:0;
	}
	.frame button.scroltop{
		right:15px;
		bottom:15px;
	}

}




