                #contact {
  width: 100%;  
}

/* Desktop/Tablets – Right aligned */
.contact-text {
  position: absolute;
  top: 43%;
  right: 10%;
  transform: translateY(-50%);
  /* text-align: right; */
  color: white;
  padding: 20px;
  
  max-width: 350px;
  width: 45%;
}

.contact-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.contact-text p {
  font-size: 1.2rem;
}

.contact-text a{
  font-size: 1.2rem;
  font-weight: bold;
color: #ffffff;
text-decoration: none !important;
}
/* ----- SMALL SCREENS (Text stays on image, centered) ----- */
@media (max-width: 768px) {

  .contact-text {
    position: absolute;
    top: 40%;
    left: 50%;                   /* center horizontally */
    transform: translate(-50%, -50%);
    text-align: center;          /* center text */
    width: 90%;                  /* wider for mobile */
    padding: 10px;
  }

  .contact-text h1 {
    font-size: 1.8rem;
  }

  .contact-text p {
    font-size: 1rem;
  }
 #contact br {
    display: none;
  }

}
        