.signed-in .contact-sidebar,
.dark-theme .contact-siderbar{
    display:none;
}




/* The banner wrapper */
.banner {
  border-radius: 10px;
  border-color: #fff;
  background-color: #262626;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  gap: 40px;
  flex-wrap: nowrap; /* prevent wrapping */
}

/* Left side (phones) */
.banner-left {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 50%;
  flex-shrink: 1;
  overflow: hidden;
}

/* Images styling */


.phone-1 {
  height: 200px;
  width:100%;
  z-index: 1;
}

/* Right side (text) */
.banner-right {
  flex: 1;
  padding-left: 10px;
  width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
position: relative;
z-index: 1;

}

.headline {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight {
  color: #ffa300;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  background-color: #ffa300;
  color: #000;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff8700;
}

/* Responsive: stack on narrower screens */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-left{
      display:none;
  }
  .banner-left,
  .banner-right {
    max-width: 100%;
    padding: 0;
  }
  .banner-right {
    margin-top: 30px;
  }
  .phone {
    max-width: 100%;
    max-height: 200px;
  }
}
