
body {
    background: #f4f4f4;
    font-family: Arial, sans-serif;
  }
  .quadrant-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 50px auto;
    padding: 20px;
  }
  .quadrant {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 27px rgb(0 0 0 / 46%);
    padding: 31px 55px 58px;
    position: relative;
    overflow: hidden;
  }
  .quadrant::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: transparent;
    border-radius: 100% 0 0 0;
    z-index: 0;
  }
  .top-left::before {
    background-color: #a4cd39;
    bottom: 0;
    right: 0;
    box-shadow:-2px -1px 1px 11px rgb(168 168 168 / 40%);
  }
  .top-right::before {
    background-color: #000000;
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 0;
    box-shadow: 3px -1px 1px 10px rgb(168 168 168 / 40%);
  }
  .bottom-left::before {
    background-color: #f7bb16;
    top: 0;
    right: 0;
    border-radius: 0 0 0 100%;
    box-shadow: -1px 2px 1px 11px rgb(168 168 168 / 40%);
  }
  .bottom-right::before {
    background-color: #caa955;
    top: 0;
    left: 0;
    border-radius: 0 0 100% 0;
    box-shadow: 2px 3px 1px 11px rgb(168 168 168 / 40%);
  }
  .quadrant .content {
    position: relative;
    z-index: 1;
  }
  .number {
    font-size: 32px;
    font-weight: bold;
    opacity: 0.3;
  }
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  .logo img {
    max-width: 100px;
  }
  @media (max-width: 768px) {
    .quadrant-container {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .logo {
      position: static;
      margin: 20px auto;
      transform: none;
    }
    .quadrant{
      padding: 112px 30px 66px;
    }
    .top-right::before {
      background-color: #000000;
      top: 0;
      left: 0;
      border-radius: 0 0 100% 0;
      box-shadow: 3px -1px 1px 10px rgb(168 168 168 / 40%);
  }
  .top-left::before {
  background-color: #a4cd39;
  bottom: 0;
  top: 0;
  border-radius: 0 0 0 100%;
  box-shadow: -2px -1px 1px 11px rgb(168 168 168 / 40%);
}
.content{
margin-left: 20px !important;
}
.content p{
margin-right: 0 !important;
}
}






  a{
    text-decoration: none;
  }
  .footer {
  background-color: #a0a0a00f;
  color: #fff;
  text-align: center;
  padding: 25px;
  bottom: 0px;
  width: 100%;
}
