 /* Hero Section */

 .about-hero {
     background-image: url('/assets/images/about/Court-2_b.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     position: relative;
     min-height: 80vh;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
 }

 .about-hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     /* background-color: rgba(15, 36, 83, 0.7); */
     z-index: 1;
 }

 .about-hero h1 {
     position: relative;
     z-index: 2;
     font-size: 5rem;
     font-weight: 400;
     text-align: start;
     letter-spacing: 1px;
     margin-top: 30%;
 }

 /* About Section */
 .about-section {
     padding: 80px 0;
     background-color: #f8f9fa;
 }

 .about-section h2 {
     font-weight: 700;
     font-size: 2rem;
     margin-bottom: 20px;
     color: #0f2453;
 }

 .about-section p {
     font-size: 1.125rem;
     line-height: 1.9;
     color: #333;
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .about-hero h1 {
         font-size: 3.2rem;
         margin-top: 60vh;
         /* SAME */
     }

     .about-section {
         padding: 50px 20px;
     }
 }

 /* Mobile */
 @media (max-width: 768px) {
     .about-hero h1 {
         font-size: 2.2rem;
         margin-top: 60vh;
         /* SAME */
     }
 }

 /* Extra Small Mobile */
 @media (max-width: 480px) {
     .about-hero h1 {
         font-size: 1.8rem;
         margin-top: 60vh;
         /* SAME */
     }
 }