 .carousel {
   position: relative;
   max-width: 100%;
   height: 600px;
   overflow: hidden;
   margin-top: 30px;
   border-radius: 10px;
 }

 .carousel-track {
   display: flex;
   transition: transform 1s ease-in-out;
 }

 .carousel-track img {
   width: 100vw;
   height: 600px;
   object-fit: cover;
   flex-shrink: 0;
 }

 .carousel-button {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background-color: rgba(0, 0, 0, 0.5);
   color: white;
   border: none;
   padding: 10px;
   cursor: pointer;
   z-index: 2;
   font-size: 24px;
 }

 .carousel-button.left {
   left: 10px;
 }

 .carousel-button.right {
   right: 10px;
 }

 @media (max-width: 768px) {
   .carousel {
     height: 400px;
   }

   .carousel-track img {
     height: 400px;
   }
 }

 /* ---- CONTENT ---- */
 section {
   padding: 40px 20px;
   max-width: 1200px;
   margin: auto;
 }

 #about p {
   font-size: large;
   line-height: 35px
 }

 h2 {
   text-align: center;
   margin-bottom: 20px;
   color: #c10000;
 }

 .section-content {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-around;
   text-align: center;
 }

 .section-box {
   flex: 1 1 250px;
   background: white;
   padding: 20px;
   border-radius: 8px;
   box-shadow:
     0 2px 5px rgba(0, 0, 0, 0.1),
     0 10px 20px rgba(0, 0, 0, 0.05);
   transition: box-shadow 0.3s ease, transform 0.3s ease;
 }

 .section-box p {
   text-align: justify;
   line-height: 25px;
   margin: 25px;
   text-indent: 25px;
 }

 .section-box h3 {
   color: rgb(255, 38, 0);
 }

 .section-box:hover {
   box-shadow:
     0 4px 12px rgba(0, 0, 0, 0.15),
     0 12px 24px rgba(0, 0, 0, 0.1);
   transform: translateY(-5px);
 }

 /* ---- FOOTER ---- */
 footer {
   background: #222;
   color: white;
   padding: 20px;
   text-align: center;
 }

 /* ---- RESPONSIVE ---- */
 @media (max-width: 768px) {}