/* Import the main styles */
@import url('dashboard.css');

/* Additional styles for the Contact Us page */
.contact-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h1 {
  color: #130a58;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.contact-section p {
  color: #555555;
  margin-bottom: 40px;
  font-size: 1.2em;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.contact-info div {
  margin-bottom: 20px;
  width: 32%;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: #130a58;
  margin-bottom: 10px;
  font-size: 1.8em;
}

.contact-info p {
  color: #555555;
  margin-bottom: 10px;
}

.contact-info a {
  color: #130a58;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.whatsapp-section {
  margin-top: 40px;
}

.whatsapp-section h2 {
  color: #130a58;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: bold;
}

.whatsapp-icons {
  display: flex;
  justify-content: center;
}

.whatsapp-icons a {
  margin: 0 20px;
}

.whatsapp-icons img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s;
}

.whatsapp-icons img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 10px;
  }

  .contact-section h1 {
    font-size: 2em;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-info div {
    width: 100%;
    text-align: center;
  }

  .whatsapp-icons img {
    width: 60px;
    height: 60px;
  }

  .whatsapp-icons a {
    margin: 0 10px;
  }
}

/* Footer styles */
.secondary-footer {
  background-color: #130a58;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
}

.secondary-footer p {
margin:0;
}