/* ─── IMPORT GOOGLE FONT ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

/* ─── RESET & NO HORIZONTAL SCROLL ───────────────────────── */

/* ─── BANNER LAYOUT ─────────────────────────────────── */
.banner24 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1250px;
  height: 500px;
  margin: 7rem auto;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 0 60px;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.button24 {
	width: auto;
	height: 45px;
	font-size: 1rem;
    padding: 0 2rem 0 2rem;
	color: #232324;
	background-color: #94cbf3;
	border: none;
	border-radius: 45px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	}
  
  .button24:hover {
	background-color: #824eff;
	box-shadow: 0px 15px 20px rgba(130, 78, 225, 0.4);
	color: #fff;
	transform: translateY(-7px);
  }
/* ─── RIGHT PANEL LAYOUT ────────────────────────── */
.right-panel24 {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  text-align: center;
}

.rp-title24 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #4fc8fd;
  margin-bottom: 2.5rem;
}
.rp-title24 strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 4px;
  color: #ffffff;
  text-align: center;
}

.rp-subtitle24 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: normal;
  text-align: center;
}


/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .banner24 {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
    text-align: center;
    border-radius: 0%;
    background-color:#333333;

  }

  .right-panel24 {
    padding: 50px;
  }
}

.banner24 {
  /* … */
  background-image: url(/tristar/img/bitrix24/b24.png);
  background-size: cover;
  /* … */
}
