/* General Styling */


/* Header Styles */
.custom-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Image Styling */
#principalimage {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
}

#principalimage:hover {
  transform: scale(1.05);
}

/* Main Section Container */
.our-courses {
  padding: 50px 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Row Styling */
.row.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Blockquote Styling */
blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #1e72e6;
  padding: 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-style: italic;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

blockquote:hover {
  transform: translateX(10px);
}

blockquote p {
  margin-bottom: 10px;
  color: #666;
}

blockquote footer {
  font-size: 1rem;
  color: #1e72e6;
  text-align: right;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .custom-h1 {
    font-size: 2rem;
  }

  #principalimage {
    max-width: 75%;
  }

  blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .custom-h1 {
    font-size: 1.8rem;
  }

  #principalimage {
    max-width: 90%;
  }

  blockquote {
    font-size: 1rem;
    padding: 15px;
  }

  .our-courses {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .custom-h1 {
    font-size: 1.5rem;
  }

  #principalimage {
    max-width: 100%;
  }

  blockquote {
    font-size: 0.95rem;
    padding: 15px;
  }
}

/* Margin Adjustments for Larger Screens */
.mt-5 {
  margin-top: 5rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

/* Centered Text */
.centered {
  text-align: center;
}
