:root {
  --primary-color: #4165d9;
  --light-bg: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.logo {
  font-weight: bold;
  font-size: 1.8rem;
  color: white;
  background-color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 4px;
  display: inline-block;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 8px 15px !important;
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: white !important;
  background-color: var(--primary-color);
}

.nav-link.active {
  color: white !important;
  background-color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a4bc5 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('fon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 20px;
  font-weight: 500;
  color: white;
}

.btn-primary:hover {
  background-color: #2a4bc5;
  border-color: #2a4bc5;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.product-card, .service-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s;
  height: 100%;
  background: white;
}

.product-card:hover, .service-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-card {
  text-align: center;
  padding: 30px 20px;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-image {
  height: 180px;
  background-color: #f5f5f5;
  border-radius: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.demo-link {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.demo-link:hover {
  text-decoration: underline;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

footer {
  background-color: #333;
  color: white;
  padding: 40px 0 20px;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.8rem;
  color: white;
  background-color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
}

.contact-info li {
  margin-bottom: 10px;
}

.btn-group-card {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-group-card .btn {
  flex: 1;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}

/* Стили для каталога */
.product-card {
  position: relative;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #4165d9;
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4444;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.product-image {
  height: 160px;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.product-body {
  flex: 1;
  margin-bottom: 15px;
}

.category-tag {
  background: #4165d9;
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
}

.product-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 12px;
}

.price-section {
  margin-bottom: 12px;
}

.current-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4165d9;
}

.old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.product-features {
  margin-bottom: 15px;
}

.feature-badge {
  display: inline-block;
  background: #f8f9fa;
  color: #495057;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  margin: 2px;
  border: 1px solid #e9ecef;
}

.feature-more {
  display: inline-block;
  color: #4165d9;
  font-size: 0.75rem;
  margin-left: 5px;
}

.product-footer {
  margin-top: auto;
}

.btn-group-card {
  display: flex;
  gap: 8px;
}

.btn-group-card .btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 8px 12px;
}

.category-filter {
  margin-bottom: 30px;
  text-align: center;
}

.cat-btn {
  margin: 5px;
  padding: 10px 20px;
  border: 2px solid #4165d9;
  background: transparent;
  color: #4165d9;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.cat-btn.active,
.cat-btn:hover {
  background: #4165d9;
  color: white;
  transform: translateY(-2px);
}

.cat-btn .badge {
  margin-left: 5px;
}

.category-stats {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eaeaea;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}

.stat-category {
  min-width: 120px;
  font-weight: 500;
  color: #333;
}

.stat-count {
  min-width: 60px;
  font-size: 0.9rem;
  color: #666;
}

.progress {
  flex: 1;
  background: #f8f9fa;
}

.progress-bar {
  background: #4165d9;
}

.empty-state {
  padding: 40px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #eaeaea;
}

.product-count .badge {
  font-size: 0.9rem;
  padding: 8px 12px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero {
      padding: 80px 0;
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .hero p {
      font-size: 1.1rem;
  }
  
  .btn-group-card {
      flex-direction: column;
  }
  
  .nav-link {
      margin: 2px 0;
      text-align: center;
  }
  
  .btn {
      margin: 5px 0;
      display: block;
      width: 100%;
  }
  
  .category-stats {
      display: none;
  }
  
  .product-card {
      padding: 15px;
  }
  
  .btn-group-card {
      flex-direction: column;
  }
  
  .cat-btn {
      margin: 2px;
      padding: 8px 15px;
      font-size: 0.9rem;
  }
  
  .section-title {
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 1.8rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .product-image {
      height: 140px;
  }
  
  .category-filter {
      text-align: left;
  }
  
  .cat-btn {
      display: block;
      width: 100%;
      margin: 5px 0;
  }
}
/* Стили для карточек услуг */
.service-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #4165d9;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4165d9, #2a4bc5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 20px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.feature-item i {
  margin-right: 10px;
  flex-shrink: 0;
}

.price-section {
  margin-bottom: 15px;
}

.price-from {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4165d9;
}

.service-info {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border: 2px dashed #eaeaea;
}

/* Стили для кнопок заказа */
.service-order-btn {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 101, 217, 0.3);
}

/* Анимация для контактной секции при прокрутке */
#contacts {
  transition: box-shadow 0.5s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
  .service-card {
      padding: 20px;
  }
  
  .service-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }
  
  .service-card h4 {
      font-size: 1.2rem;
  }
  
  .price-from {
      font-size: 1.3rem;
  }
  
  .service-order-btn {
      padding: 10px 15px;
      font-size: 0.9rem;
  }
}
/* Стили для секции "О нас" */
.stats-section {
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4165d9;
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Стили для карточек команды */
.team-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #4165d9;
}

.team-photo {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(65, 101, 217, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .photo-overlay {
  opacity: 1;
}

.telegram-link {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.telegram-link:hover {
  transform: scale(1.2);
  color: white;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.team-position {
  color: #4165d9;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
}

.skill-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid #e9ecef;
}

.btn-telegram {
  background: #0088cc;
  color: white;
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-telegram:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

/* Стили для принципов работы */
.principles-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
}

.principle-item {
  padding: 20px;
}

.principle-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4165d9, #2a4bc5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.principle-item h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.principle-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
  .stat-item h3 {
      font-size: 2rem;
  }
  
  .team-photo {
      height: 200px;
  }
  
  .team-info {
      padding: 20px;
  }
  
  .principles-section {
      padding: 30px 20px;
  }
  
  .principle-item {
      margin-bottom: 30px;
  }
  
  .principle-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .team-card {
      margin-bottom: 30px;
  }
  
  .stats-section .row {
      gap: 15px;
  }
  
  .stat-item {
      padding: 15px;
  }
}
/* Стили для модальных окон */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon, .error-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
      transform: scale(0);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

/* Стили для формы */
.booking-option {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-option:hover {
  border-color: #007bff;
}

.booking-option.active {
  border-color: #007bff;
  background-color: #f8f9fa;
}

.option-time {
  font-weight: bold;
  font-size: 1.1em;
}

.option-desc {
  color: #6c757d;
  font-size: 0.9em;
}

.option-price {
  font-weight: bold;
  color: #28a745;
}

/* Анимация кнопки */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.product-image-large {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 10px;
  background: white;
}

.category-badge-large {
  background: #4165d9;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.current-price {
  font-size: 2rem;
  font-weight: bold;
  color: #4165d9;
  display: block;
}

.old-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discount-badge-large {
  background: #28a745;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: inline-block;
  margin-left: 10px;
}

.feature-check {
  color: #28a745;
  font-weight: bold;
  margin-right: 5px;
}

.feature-item {
  padding: 8px;
  border-left: 3px solid #4165d9;
  background: #f8f9fa;
  margin-bottom: 5px;
}

.nav-tabs .nav-link {
  color: #495057;
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: #4165d9;
 background:  #4165d9;
}

/* Стили для модального окна */
.price-display {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  border: 1px solid #dee2e6;
}

.contact-card {
  padding: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
}

.contact-card:hover {
  border-color: #4165d9;
  box-shadow: 0 2px 8px rgba(65, 101, 217, 0.1);
}

.contact-type-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.contact-value {
  font-family: 'Courier New', monospace;
  font-weight: 500;
}

.feature-icon {
  font-weight: bold;
  margin-right: 8px;
}

.included-features li {
  padding: 5px 0;
  border-bottom: 1px solid #f8f9fa;
}

.included-features li:last-child {
  border-bottom: none;
}

.contact-actions .btn {
  font-size: 0.8rem;
  padding: 4px 8px;
}

@media (max-width: 768px) {
  .action-buttons .btn {
      width: 100%;
      margin-bottom: 10px;
      margin-right: 0 !important;
  }
  
  .current-price {
      font-size: 1.5rem;
  }
  
  .contact-actions {
      flex-direction: column;
      gap: 5px;
  }
  
  .contact-actions .btn {
      width: 100%;
      margin-left: 0 !important;
  }
}
.team-card {
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

/* Стили для контактов */
.contact-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-icon.telegram { background: #0088cc; }
.contact-icon.vk { background: #4C75A3; }

.contact-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-telegram-main {
  background: #0088cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-telegram-main:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-1px);
}

.btn-vk-main {
  background: #4C75A3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-vk-main:hover {
  background: #3d6188;
  color: white;
  transform: translateY(-1px);
}

/* Бронирование консультации */
.booking-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.booking-option {
  border: 2px solid #eaeaea;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-option:hover,
.booking-option.active {
  border-color: #4165d9;
  background: #f8f9ff;
}

.option-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .contact-actions {
      flex-direction: column;
      align-items: stretch;
  }
  
  .booking-options {
      grid-template-columns: 1fr;
  }
  
  .contact-header {
      flex-direction: column;
      text-align: center;
  }
  
  .contact-icon {
      margin: 0 auto 10px;
  }
}

/* Стили для кликабельных изображений продуктов */
.product-image {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-image-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.product-image-link:hover .image-overlay {
  opacity: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-details {
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  border: 2px solid white;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}

.product-title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.product-title-link:hover {
  color: #007bff;
}

/* Стили для кликабельных фотографий команды */
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.team-photo-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.team-photo-link:hover .photo-overlay {
  opacity: 1;
}

.team-photo .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-text {
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 8px 12px;
  border: 2px solid white;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}

/* Анимации для карточек */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card {
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

/* Стили для контактов */
.contact-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-icon.telegram { background: #0088cc; }
.contact-icon.vk { background: #4C75A3; }

.contact-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-telegram-main {
  background: #0088cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-telegram-main:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-1px);
}

.btn-vk-main {
  background: #4C75A3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-vk-main:hover {
  background: #3d6188;
  color: white;
  transform: translateY(-1px);
}

/* Бронирование консультации */
.booking-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.booking-option {
  border: 2px solid #eaeaea;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-option:hover,
.booking-option.active {
  border-color: #4165d9;
  background: #f8f9ff;
}

.option-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .contact-actions {
      flex-direction: column;
      align-items: stretch;
  }
  
  .booking-options {
      grid-template-columns: 1fr;
  }
  
  .contact-header {
      flex-direction: column;
      text-align: center;
  }
  
  .contact-icon {
      margin: 0 auto 10px;
  }
}
