

/* Background */
body {
  background: linear-gradient(to bottom, #ffffff 30%, #6ee7f9 60%);
}

/* Section spacing */
.about-container {
  height: 91.8vh;
  padding: 40px;
  overflow-y: hidden;
}

/* Logo styling */
.about-logo {
  width: 95%;
  height: auto;
  margin-top: -53px;
}

.info {

  margin-top: -110px;

}

/* Headings */
.info h2 {
  font-size: 40px;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
  color: #0b4b75;
}

/* Paragraphs */
.info p {
  background-color: #41dcf4;
  padding: 15px;
  border-radius: 15px;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  color: #0b4b75;
}

/* Footer section */
.footer {
  margin-top: 25px;
  font-size: 18px;
  color: #0b4b75;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.spacer{
  color: #41dcf4;
}
/* Responsive tweaks */
@media (max-width: 576px) {
  .about-container {
    padding: 20px;
    height: 100%;
  }

  .info  {
    margin-top: -60px;
  }

  .info h2 {
    font-size: 32px;
  }

  .info p {
    font-size: 16px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

/* Tablet (iPad Pro 768–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-container {
    height: 95.6vh;              
    padding: 40px 60px;
  }

  .about-logo {
    width: 170%;                
    max-width: none;
    margin: 0 auto;
    transform: translateX(10%) translateY(-20%);
  }

  .info {
    margin-top: 0;             
    padding: 0 15px;
  }

  .info1 h2 {
    font-size: 60px;
    text-align: center;
    transform: translateX(-120%) translateY(455%);
  }

  .info1 p {
    font-size: 20px;
    height: 23vh;
    transform: translateX(-120%) translateY(221%);
  }

  .info2 h2 {
    font-size: 60px;
    text-align: center;
    transform: translateX(5%) translateY(133%);
  }

  .info2 p {
    font-size: 20px;
    height: 23vh;
    transform: translateX(5%) translateY(63%);
  }

  .footer {
    transform: translateX(-50%) translateY(820%);
    font-size: 16px;
  }
}
