.contact-intro {
   position: relative;
   height: 70vh; /* Takes 70% of viewport height */
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: white;
   overflow: hidden;
}

.contact-intro__bg-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: -1;
}

.contact-intro__bg-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.65);
   transition: transform 0.5s ease;
}

.contact-intro:hover .contact-intro__bg-image {
   transform: scale(1.05);
}

.contact-intro__content {
   max-width: 800px;
   padding: 2rem;
   z-index: 1;
}

.contact-intro__title {
   font-size: 3.5rem;
   font-weight: 800;
   margin-bottom: 1rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-intro__title-highlight {
   color: #149c9c;
}

.contact-intro__subtitle {
   font-size: 1.8rem;
   font-weight: 500;
   margin-bottom: 1.5rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-intro__separator {
   width: 80px;
   height: 3px;
   background-color: #149c9c;
   margin: 0 auto 1.5rem;
}

.contact-intro__description {
   font-size: 1.2rem;
   line-height: 1.8;
   max-width: 600px;
   margin: 0 auto;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .contact-intro {
       height: 60vh; /* Slightly shorter on mobile */
   }

   .contact-intro__title {
       font-size: 2.5rem;
   }

   .contact-intro__subtitle {
       font-size: 1.4rem;
   }

   .contact-intro__description {
       font-size: 1rem;
   }

   .contacts{
      padding-left: 0;
      padding-right: 0;
   }

   .contacts__form{
      padding: 1.5rem;
   }
}

@media (max-width: 480px) {
   .contact-intro {
      height: 50vh; 
   }

   .contacts__form{
      padding: 1rem;
   }
}