@import url('https://fonts.googleapis.com/css2?family=Aptos+Display:wght@400;500;700&display=swap');
        body {
            font-family: 'Aptos Display', sans-serif;
            /* margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6; */
        }

        .aboutuss {
            background: #0b213c;
            color: white;
            padding: 20px 0;
            text-align: center;
            
        }
        .aboutuss h1 {
            margin: 0;
            font-size: 2.5em;
            font-weight: bold;
            font-family: 'Aptos Display', sans-serif;
        }

        .aboutuss p {
            margin: 5px 0 0;
            font-size: 1.2em;
            font-family: 'Aptos Display', sans-serif;
        }

        /* section {
            padding: 40px 20px;
        } */

        /* Start about-us section */
        .about-section {
            /* margin: 0 auto;  */
            padding: 20px 0;
            background: #f4f4f4;
          }
          
          .about-section .content-wrapper {
            display: flex;
            gap: 20px;
            align-items: flex-start; /* Aligns items to the top */
            width: 80%;
            margin: 0 auto; /* Centers the section horizontally */
          }
          
          .about-section .left-content {
            flex: 1; /* Takes 50% of available width */
            background-color: #f5f5f5;
            border-radius: 10px;
            /* padding: 20px;
            width: 300px; */
            height: 45vh;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
          }
          .about-section .left-content p {
            font-size: 20px;
            color: #0f0f0f;
            font-family: 'Aptos Display', sans-serif;
            text-align: justify;
            margin: 4px 20px 0 20px;
          }
          .about-section .left-content h1 {
            font-size: 22px;
            margin: 30px 0 0 20px;
            font-weight: bold;
            font-family: 'Aptos Display', sans-serif;
          }
          
          .about-section .interactive-button {
            display: inline-block;
            margin: 95px 0 0 20px;
            padding: 10px 20px;
            background-color: #0b213c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
          }
          
          .about-section .interactive-button:hover {
            background-color: #0b1117;
          }

          .about-section .right-content {
            flex: 1; /* Takes 50% of available width */
            text-align: center;
          }
          
          .about-section .right-content img {
            width: 100%;
            border-radius: 10px; /* Optional: Adds rounded corners to the image */
          }
          
          .about-section .image-caption {
            margin-top: 10px;
            font-size: 14px;
            color: #0f0f0f;
            font-weight: bold;
          }
        /*End about us sections */
        .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px;
            width: 80%;
            margin: 0 auto; /* Centers the section horizontally */
        }
        .value {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .value:hover {
            transform: translateY(-10px);
        }

        .value img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .value h3 {
            color: #0b213c;
            font-size: 1.5em;
            margin: 10px 0;
        }

        .value p {
            font-size: 16px;
            line-height: 1.5;
            text-align: justify;
            font-family: 'Aptos Display', sans-serif;
        }


        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                flex: none;
            }

            .hero img {
                margin-top: 20px;
            }
            
        }

        /* Mobile responsiveness */
@media (max-width: 768px) {
      .aboutuss {
        margin: 220px 20px 0 0px;
        width: 100%;
       }
       .aboutuss p{
        font-size: 14px;
    }
    .content-wrapper {
      flex-direction: column; /* Stack items vertically */
      text-align: center; /* Center-align content */
    }
  
    .left-content,
    .right-content {
      flex: unset; /* Remove flex sizing for stacked layout */
      width: 100%; /* Ensure full width on smaller screens */
    }
    .about-section .left-content h1 {
      font-size: 22px;
      margin: 30px 0 0 0px;
      font-weight: bold;
      font-family: 'Aptos Display', sans-serif;
    }
    
    h1 {
      font-size: 1.8rem; /* Adjust heading size for smaller screens */
    }
  
    p {
      font-size: 0.95rem; /* Adjust paragraph size for readability */
    }
    .about-section .interactive-button {
      margin:10px 0 20px 0 ;
    }
    .values {
      margin: -20px 0 0 30px; 
  }
  }