body {
   
    margin: 0;
    padding: 0;
   
    
  }
  .container {
    max-width: 1200px;
    margin: auto;
    /* padding: 20px; */
    display: block !important;
  }
  .branch {
    background-color: #fff;
    border-left: 10px solid #68CAF2;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }
  .branch:nth-child(even) {
    border-left-color: #EC93BE;
  }
  .branch .map, .branch .info {
    flex: 1 1 300px;
    padding: 20px;
    /* font-weight: 300; */
  }
  .branch .map, .branch .info strong {
    flex: 1 1 300px;
    font-family: 'GothamRounded';
    font-weight: bold;
    font-size: 18px;
  }
  .map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
  }
  .view-map-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #68CAF2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
  }
  .branch:nth-child(even) .view-map-btn {
    background-color: #EC93BE;
    color:#fff;
  }
  .info h2 {
    font-family: 'GothamRounded';
    margin-top: 0;
    color: #68CAF2;
    font-size: 2rem;

  }
  .contactus{
    text-shadow: 1px 0 #55c9f4, -1px 0 #55c9f4, 0 1px #55c9f4, 0 -1px #55c9f4, 1px 1px #55c9f4, -1px -1px #55c9f4, 1px -1px #55c9f4, -1px 1px #55c9f4;
  }
  .branch:nth-child(even) .info h2 {
    color: #EC93BE;
  }
  .branch:nth-child(even) .info p {
    color: #EC93BE;
  }
  .info p {
    margin: 10px 0;
  }
  @media (max-width: 768px) {
    .branch {
      flex-direction: column;
    }
  }