.about-us {
  background: #f0f9ff; /* soft light background */
  padding: 80px 20px;
  color: #0f1724;
}

.about-us .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #07a6c6;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 40px;
}

.key-values {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.key-values .value h3 {
  color: #07a6c6;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.key-values .value p,
.key-values .value ul {
  font-size: 1rem;
  line-height: 1.6;
}

.key-values .value ul {
  padding-left: 20px;
}

.key-values .value ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}
/* Footer Styles */
.footer {
  background: #001f4d; /* dark blue */
  color: #ffffff;
  padding: 40px 20px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-section {
  margin: 15px;
}

.footer-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 2px solid #07a6c6;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #07a6c6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #07a6c6;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}
img{
    width: 40%;
    height: 40%;
    display: flex;
    margin: 50px;

}
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
  gap: 20px;
}

.section .text {
  flex: 1;
  text-align: left;
}

.section .image {
  flex: 1;
  text-align: center;
}

.section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.pink-line.full-bleed{
  border:0;
  height:6px;
  background:#ff2d95;
  width:100%;
  margin: 0;             
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}


.back {
  background-color: #07a6c6;       /* Nivera blue */
  color: white;
  border: none;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back:hover {
  background-color: #05889f;       /* Darker on hover */
  transform: translateY(-2px);
}

.back:active {
  transform: scale(0.97);
}

a {
  text-decoration: none;           /* Remove underline from link */
}

