html {
    overflow-x: hidden;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #384B5EFF;
    margin: 0px 75px 20px 75px;
    overflow-x: hidden;
    /* max-width:fit-content; */
  }

  header {
    padding: 25px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: fixed; */
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 100;
    /* border-bottom: 1px solid #F2F2F2; */
  }

  .logo {
    width: 175px;
    height: auto;
  }

 .header-right {
    margin-right: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header-right a {
    color: #ffffff;
    margin: 0 10px 0 10px;
    text-decoration: none;
    font-size: 14.5px;
  }
  
  .header-right a:hover {
    color: #EB6769FF;
  }

  .nav-container {
    position: relative;
    display: inline-block;
  }

  .nav-toggle {
    padding: 10px 10px;
    /* background-color: #333; */
    color: white;
    cursor: pointer;
    user-select: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f9f9f9;
    min-width: 125px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
  }

  .nav-item {
    color: #333 !important;
    padding: 8px 8px;
    text-decoration: none;
    display: block;
  }

  .nav-item:hover {
    color: #EB6769FF !important;
  }

  /* Show menu on hover of either toggle or menu itself */
  .nav-container:hover .nav-menu {
    display: block;
  }

  .nav-toggle:hover {
    background-color: #EB6769FF;
    border-radius: 4px;
  }

  .profile-pic {
    width: 22.5px;
    height: 22.5px;
  }

  .container {
    padding-top: 15px ;
    padding-bottom: 20px;
    /* border: 1px solid #1cb05a; */
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /* border: 1px solid #1cb05a; */
  }
  
  .contact-card-left {
    flex: 1;
    flex-basis: 60%;
  }
  
  .contact-card-left p {
    margin-top: 20px;
    color: #BCC1CAFF;
  }
  
  .contact-card-left img {
    width: 90%;
    height: auto;
    margin-left: 5%;
  }
  
  .contact-card-right {
    flex: 2;
    flex-basis: 40%;
    border: 1px solid #ccc;
    margin-left: 50px;
    padding: 0px 20px 0 20px;
    color:#BCC1CAFF;
  }
  
  .contact-card-right h1 {
    text-align: left;
  }
  
  .contact-card-right p {
    color: #EB6769FF;
  }
  
  .form-group {
    margin-bottom: 20px;
    /* border: 1px solid #1cb05a; */
  }

  label {
    font-weight: bold;
    width: 100%;
    /* border: 1px solid #15803d; */
  }
  
  input[type="text"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .contact-details {
    display: flex;
  }

  .email {
    flex-basis: 60%;
    margin-right: 15px;
  }

  .phone {
    flex-basis: 40%;
  }

  .contact-details input[type="email"], 
  .contact-details input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing:border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  button[type="submit"] {
    padding: 10px 20px;
    background-color: #EB6769FF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #FFB84DFF;
  }

  footer {
    background-color: #44475b;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 0;
  }