.elementor-17 .elementor-element.elementor-element-de97011 > .tippy-popper .tippy-tooltip .tippy-content{text-align:center;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-de97011 */.contacts-main-block {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, #3838e5 0%, #2a2a9e 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(56,56,229,0.3);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.contacts-main-block h1 {
  margin: 0;
  padding: 40px 40px 30px;
  font-size: 2.5em;
  font-weight: 400;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.05);
  color: white;
}

.contacts-main-block h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #f0c14b, #fff);
  border-radius: 3px;
}

.contacts-main-block h2 {
  color: #f0c14b !important;
  font-weight: 400;
}

.contacts-content {
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 25px;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card div {
  color: white !important;
}

.contact-card .email-link {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  color: #f0c14b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card .email-link:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.contact-btn {
  background: linear-gradient(135deg, #00C851 0%, #00b140 100%);
  color: white !important;
  padding: 18px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0,200,81,0.4);
  transition: all 0.3s ease;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 220px;
  justify-content: center;
  text-align: center;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,200,81,0.5);
}

.contact-btn.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  box-shadow: 0 8px 25px rgba(0,136,204,0.4);
}

.contact-btn.telegram:hover {
  box-shadow: 0 12px 35px rgba(0,136,204,0.5);
}

.contact-btn.phone {
  background: linear-gradient(135deg, #f0c14b 0%, #e6b800 100%);
  color: #333 !important;
  box-shadow: 0 8px 25px rgba(240,193,75,0.4);
}

.contact-btn.phone:hover {
  box-shadow: 0 12px 35px rgba(240,193,75,0.5);
}

/* АДРЕСНЫЙ БЛОК */
.note-accent {
  background: rgba(255,255,255,0.1);
  color: white !important;
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 0; 
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.warning-text {
  font-size: 16px;
  font-weight: 700;
  color: #f0c14b !important;
  margin-top: 15px;
  text-align: center;
  padding: 12px 0;
  border-top: 2px solid rgba(240,193,75,0.5);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contacts-main-block {
    margin: 40px 12px;
    border-radius: 16px;
  }
  
  .contacts-content { 
    grid-template-columns: 1fr; 
    gap: 25px; 
    padding: 0 16px 40px;
  }
  
  .contacts-main-block h1 { 
    font-size: 1.9em; 
    padding: 30px 20px 25px; 
  }
  
  .contact-card {
    padding: 28px 24px;
    margin-bottom: 20px;
  }
  

  .contact-card div strong {
    font-size: 20px !important; 
  }
  
  h2 {
    font-size: 1.7em !important;
  }
}


.faq-block {
  max-width: 1000px;
  margin: 40px auto 40px;
  padding: 0 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0f4f8;
}

.faq-block h2 {
  margin: 0;
  padding: 30px 40px 25px;
  font-size: 2.2em;
  font-weight: 400;
  color: #3838e5;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.faq-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3838e5, #f0c14b);
  border-radius: 2px;
}

.faq-container {
  padding: 0 40px 40px;
}

.faq-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(56, 56, 229, 0.12);
  transform: translateY(-1px);
}

.faq-item[open] {
  box-shadow: 0 6px 24px rgba(56, 56, 229, 0.15);
  border-color: #e3f2fd;
}

.faq-item summary {
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  padding: 16px 28px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '▼';
  color: #3838e5;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
}

.faq-item[open] summary {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%) !important;
  color: #3838e5;
  font-weight: 700;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item div {
  padding: 0 28px 24px;
  background: #fff;
}

.faq-item p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-block { margin: 40px 8px; border-radius: 12px; }
  .faq-block h2 { font-size: 1.9em; padding: 22px 20px 20px; }
  .faq-container { padding: 0 20px 28px; }
  .faq-item summary { font-size: 16px; padding: 14px 24px; margin: 0 -4px; }
  .faq-item div { padding: 0 24px 20px; }
  .faq-item p { font-size: 16px; }
  .faq-item { margin-left: -4px; margin-right: -4px; }
}

.cta-final-btn {
  flex: 1 1 200px !important;
  min-width: 180px !important;
  max-width: 220px !important;
  padding: 20px 25px !important;
  margin: 0 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 18px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.cta-final-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
}

.cta-final-btn:active {
  transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
  .cta-final-block {
    padding: 40px 20px !important;
    margin: 60px 10px 40px !important;
  }
  .cta-final-block h2 {
    font-size: 2em !important;
  }
  .cta-final-btn {
    flex: 1 1 100% !important;
    max-width: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-de97011 */.contacts-main-block {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, #3838e5 0%, #2a2a9e 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(56,56,229,0.3);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.contacts-main-block h1 {
  margin: 0;
  padding: 40px 40px 30px;
  font-size: 2.5em;
  font-weight: 400;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.05);
  color: white;
}

.contacts-main-block h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #f0c14b, #fff);
  border-radius: 3px;
}

.contacts-main-block h2 {
  color: #f0c14b !important;
  font-weight: 400;
}

.contacts-content {
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 25px;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card div {
  color: white !important;
}

.contact-card .email-link {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  color: #f0c14b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card .email-link:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.contact-btn {
  background: linear-gradient(135deg, #00C851 0%, #00b140 100%);
  color: white !important;
  padding: 18px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0,200,81,0.4);
  transition: all 0.3s ease;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 220px;
  justify-content: center;
  text-align: center;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,200,81,0.5);
}

.contact-btn.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  box-shadow: 0 8px 25px rgba(0,136,204,0.4);
}

.contact-btn.telegram:hover {
  box-shadow: 0 12px 35px rgba(0,136,204,0.5);
}

.contact-btn.phone {
  background: linear-gradient(135deg, #f0c14b 0%, #e6b800 100%);
  color: #333 !important;
  box-shadow: 0 8px 25px rgba(240,193,75,0.4);
}

.contact-btn.phone:hover {
  box-shadow: 0 12px 35px rgba(240,193,75,0.5);
}

/* АДРЕСНЫЙ БЛОК */
.note-accent {
  background: rgba(255,255,255,0.1);
  color: white !important;
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 0; 
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.warning-text {
  font-size: 16px;
  font-weight: 700;
  color: #f0c14b !important;
  margin-top: 15px;
  text-align: center;
  padding: 12px 0;
  border-top: 2px solid rgba(240,193,75,0.5);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contacts-main-block {
    margin: 40px 12px;
    border-radius: 16px;
  }
  
  .contacts-content { 
    grid-template-columns: 1fr; 
    gap: 25px; 
    padding: 0 16px 40px;
  }
  
  .contacts-main-block h1 { 
    font-size: 1.9em; 
    padding: 30px 20px 25px; 
  }
  
  .contact-card {
    padding: 28px 24px;
    margin-bottom: 20px;
  }
  

  .contact-card div strong {
    font-size: 20px !important; 
  }
  
  h2 {
    font-size: 1.7em !important;
  }
}


.faq-block {
  max-width: 1000px;
  margin: 40px auto 40px;
  padding: 0 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0f4f8;
}

.faq-block h2 {
  margin: 0;
  padding: 30px 40px 25px;
  font-size: 2.2em;
  font-weight: 400;
  color: #3838e5;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.faq-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3838e5, #f0c14b);
  border-radius: 2px;
}

.faq-container {
  padding: 0 40px 40px;
}

.faq-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(56, 56, 229, 0.12);
  transform: translateY(-1px);
}

.faq-item[open] {
  box-shadow: 0 6px 24px rgba(56, 56, 229, 0.15);
  border-color: #e3f2fd;
}

.faq-item summary {
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  padding: 16px 28px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '▼';
  color: #3838e5;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
}

.faq-item[open] summary {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%) !important;
  color: #3838e5;
  font-weight: 700;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item div {
  padding: 0 28px 24px;
  background: #fff;
}

.faq-item p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-block { margin: 40px 8px; border-radius: 12px; }
  .faq-block h2 { font-size: 1.9em; padding: 22px 20px 20px; }
  .faq-container { padding: 0 20px 28px; }
  .faq-item summary { font-size: 16px; padding: 14px 24px; margin: 0 -4px; }
  .faq-item div { padding: 0 24px 20px; }
  .faq-item p { font-size: 16px; }
  .faq-item { margin-left: -4px; margin-right: -4px; }
}

.cta-final-btn {
  flex: 1 1 200px !important;
  min-width: 180px !important;
  max-width: 220px !important;
  padding: 20px 25px !important;
  margin: 0 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 18px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.cta-final-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
}

.cta-final-btn:active {
  transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
  .cta-final-block {
    padding: 40px 20px !important;
    margin: 60px 10px 40px !important;
  }
  .cta-final-block h2 {
    font-size: 2em !important;
  }
  .cta-final-btn {
    flex: 1 1 100% !important;
    max-width: none !important;
  }
}/* End custom CSS */