.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
  }
  
  .box-image-text .image img {
    max-height: 190px;
    margin: auto;
  }
  
  .box-simple {
    min-height: 230px;
  }
  .box-image-text .image {
    min-height: 190px;
    max-height: 190px;
  }
  
  .box-image-text .image img {
    max-height: 190px;
    margin: auto;
  }
  
  .box-simple {
    min-height: 230px;
  }
  .navbar-default {
    background-color: navy;
    border-color: #cccccc;
    border-bottom: none;
  }
  #footer {
    background: navy;
    padding: 50px 0;
    color: #999999;
  }
  #copyright {
    background: navy;
    color: #ccc;
    padding: 50px 0;
    font-size: 12px;
    line-height: 28px;
  }
  .navbar-default .navbar-nav > li > a {
    color: white;
  }
  
  p{
    color:black;
  }
  #footer p {
    color: white
  }
  #copyright p{
    color:white;
    text-align: center;
    font-weight: bold;
  }
  
  #footer-section {
    margin-bottom: 120px; /* Adjust the value as needed */
  }
  .navbar-brand img {
    max-height: 58px;
  
  }
  .alo {
    display: block;                /* Make the image a block element */
    margin-left: auto;            /* Center horizontally */
    margin-right: auto;           /* Center horizontally */
    width: 70%;                   /* Base width of the image */
    max-width: 100%;              /* Ensure it doesn't exceed the container width */
    height: auto;                 /* Maintain aspect ratio */
  }
  .risk-factors-container {
    display: flex;                  /* Use flexbox layout */
    justify-content: space-between; /* Space between columns */
    flex-wrap: wrap;               /* Allow columns to wrap on smaller screens */
    margin: 20px 0;                /* Add some margin for spacing */
  }
  
  .risk-factors-column {
    width: 48%;                    /* Base width of columns */
    box-sizing: border-box;        /* Include padding and border in the width calculation */
    margin-bottom: 20px;           /* Space between rows */
  }
  
  .risk-factors-column img {
    max-width: 100%;               /* Ensure the image scales down to fit its column */
    height: auto;                  /* Maintain the aspect ratio */
  }
  
  @media (max-width: 768px) {      /* Media query for smaller screens */
    .risk-factors-column {
      width: 100%;                  /* Full width for smaller screens */
    }
  }
  
  .alo {
    width: 90%;                 /* Adjust image width for smaller screens */
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #cdcdcd;
  }
      /* Importing Google Font */
      @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
  
      .aloo {
          font-family: 'Roboto', sans-serif;
          background-color: #f4f4f4;
          color: #050548;
          margin: 0;
          padding: 0;
      }
  
      .aloo .faq-section {
          max-width: 1000px;
          margin: 50px auto;
          padding: 20px;
          background-color: #fff;
          border-radius: 8px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }
  
      .aloo .faq-section h2 {
          text-align: center;
          margin-bottom: 20px;
          color: #333;
          font-weight: 700;
      }
  
      .aloo .faq-item {
          margin-bottom: 15px;
          border-bottom: 1px solid #ddd;
          padding-bottom: 15px;
      }
  
      .aloo .faq-item h3 {
          font-size: 18px;
          color: #050548;
          cursor: pointer;
          margin: 0;
          padding: 10px;
          background-color: #f9f9f9;
          border-radius: 4px;
      }
  
      .aloo .faq-item p {
          display: none;
          padding: 10px 0 0;
          margin: 0;
          font-size: 16px;
          color: #666;
      }
  
      .aloo .faq-item.active p {
          display: block;
      }
  
      /* Hover effect for the question */
      .aloo .faq-item h3:hover {
          background-color: #e6f0ff;
      }
         /* Importing Google Font */
         @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

         body {
             font-family: 'Roboto', sans-serif;
             background-color: #f4f4f4;
             color: #050548;
             margin: 0;
             padding: 0;
         }
 
         .faq-section {
             max-width: 800px;
             margin: 50px auto;
             padding: 20px;
             background-color: #fff;
             border-radius: 8px;
             box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
         }
 
         .faq-section h2 {
             text-align: center;
             margin-bottom: 20px;
             color: #333;
             font-weight: 700;
         }
 
         .faq-item {
             margin-bottom: 15px;
             border-bottom: 1px solid #ddd;
             padding-bottom: 15px;
         }
 
         .faq-item h3 {
             font-size: 18px;
             color: #050548;
             cursor: pointer;
             margin: 0;
             padding: 10px;
             background-color: #f9f9f9;
             border-radius: 4px;
         }
 
         .faq-item p {
             display: none;
             padding: 10px 0 0;
             margin: 0;
             font-size: 16px;
             color: #666;
         }
 
         .faq-item.active p {
             display: block;
         }
 
         /* Hover effect for the question */
         .faq-item h3:hover {
             background-color: #e6f0ff;
         }

         .accordion {
            background-color: #f1f1f1;
            color: #444;
            cursor: pointer;
            padding: 18px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 18px;
            transition: 0.4s;
            margin-top: 5px;
        }
        
        .active, .accordion:hover {
            background-color: #ddd;
        }
        
        .panel {
            padding: 0 18px;
            display: none;
            background-color: white;
            overflow: hidden;
        }
        
        .panel.show {
            display: block;
        }
        