.elementor-724 .elementor-element.elementor-element-64f42f9{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-724 .elementor-element.elementor-element-47b5a5c{width:var( --container-widget-width, 101.282% );max-width:101.282%;--container-widget-width:101.282%;--container-widget-flex-grow:0;}.elementor-724 .elementor-element.elementor-element-47b5a5c.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-724 .elementor-element.elementor-element-1998920{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS */.contacts-section {
  background: #fff;
  padding: 90px 0 100px;
  font-family: Inter, system-ui, sans-serif;
}

.contacts-container {
  display: grid;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 992px) {
  .contacts-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contacts-left {
  background: #fff;
  border: 1px solid #dbe5f0;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1), 0 3px 8px rgba(16, 24, 40, 0.05);
  position: relative;
}

.contacts-left::before {
  content: "";
  position: absolute;
  top: 5;
  left: 10;
  right: 10;
  height: 6px;
  background: linear-gradient(90deg, #1fcf90 0%, #ff8a3d 100%);
  border-top-left-radius: 30px;
  border-top-right-radius: 22px;
}

.contacts-left h1 {
  font-weight: 900;
  font-size: 42px;
  margin: 0 0 12px;
  color: #0f1c2b;
}

.contacts-subtitle {
  color: #425b72;
  margin: 0 0 24px;
  font-size: 18px;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.contacts-list li {
  margin-bottom: 14px;
}

.contacts-list span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #496079;
  text-transform: uppercase;
}

.contacts-list a,
.contacts-list p {
  font-size: 18px;
  color: #0f1c2b;
  font-weight: 700;
  text-decoration: none;
}

.contacts-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn.primary {
  background: #6694ba;
  color: #fff;
  border: 1px solid #6694ba;
}

.btn.primary:hover {
  background: #557fa1;
  transform: translateY(-1px);
}

.btn.outline {
  background: #fff;
  color: #0f1c2b;
  border: 1px solid #dbe5f0;
}

.btn.outline:hover {
  background: #f7fafc;
}

.contacts-right {
  background: #fff;
  border: 1px solid #dbe5f0;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1), 0 3px 8px rgba(16, 24, 40, 0.05);
  overflow: hidden;
  position: relative;
}

.contacts-right::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, #1fcf90 0%, #ff8a3d 100%);
  z-index: 1;
}

.contacts-right img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .contacts-section {
    padding: 60px 0 80px;
  }
  .contacts-container {
    padding: 0 20px;
  }
  .contacts-left h1 {
    font-size: 36px;
  }
}/* End custom CSS */