/* Дополнительные стили для страницы "О компании" */
.hero-section {
    background: linear-gradient(135deg, #533b77 0%, #36274d 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    background-color: #ffffff;
    color: #333;
    padding: 80px 0;
}

.about-content h2 {
    color: #533b77;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.features-list {
    margin: 2rem 0 3rem;
}

.features-list li {
    background: rgba(83, 59, 119, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.features-list li:hover {
    background: rgba(83, 59, 119, 0.1);
    transform: translateX(5px);
}

.stats-section {
    background: linear-gradient(135deg, #533b77 0%, #36274d 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF8E53;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
}

/* Основные стили */
body.service-page {
  background-color: #533b77;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* Герой-секция */
.service-hero {
  background: linear-gradient(rgba(83, 59, 119, 0.9), rgba(0, 0, 0, 0.7)), url('../images/service-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.service-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s;
}

/* Секции */
.service-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Карточки */
.service-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Тарифы */
.plan-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

/* Форма */
.service-form-container {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #ffffff;
}

/* Кнопки */
.service-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Адаптивность */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-section {
    padding: 60px 0;
  }
  
  .highlight-box {
    padding: 1rem;
  }
}

/* Глобальные стили для всех страниц */
body {
  background-color: #533b77;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Общие стили шапки */
header {
  background-color: #533b77;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.branding h1 {
  margin: 0;
  font-size: 28px;
  color: #fff;
}

.branding p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ecf0f1;
}

/* Стили для кнопок в правом углу */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.callback-btn, .request-btn {
    padding: 8px 15px;
    background: linear-gradient(90deg, #ff6d45, #ff8f40); /* Светлый градиент */
    color: white;
    border: none;
    border-radius: 20px; /* Закруглённые углы */
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(255, 120, 85, 0.4); /* Светлая тень */
    font-weight: 500;
}

.callback-btn:hover, .request-btn:hover {
    background: linear-gradient(90deg, #ff7a55, #ff9d4d ); /* Немного темнее при наведении */
    box-shadow: 0 4px 15px rgba(255, 120, 85, 0.5);
}

.callback-btn:active, .request-btn:active {
    background: linear-gradient(90deg, #ff5e35, #ff8238); /* Акцент при нажатии */
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.8); /* Очень светлая тень */
    transform: translateY(1px);
}


.request-btn {
  background-color: #533b77;
  color: white;
  text-decoration: none;
}

.request-btn:hover {
  background-color: #36274d;
}

/* Стили навигационного меню */
.main-nav {
  margin-top: 10px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-size: 15px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* Стили для иконок */
.nav-link i {
  margin-right: 5px;
  width: 16px;
  text-align: center;
}

/* Специальные стили для разных типов пользователей */
.admin-link {
  color: #f39c12 !important;
}

.moderator-link {
  color: #9b59b6 !important;
}

.user-link {
  color: #3498db !important;
}

.login-link {
  color: #2ecc71 !important;
}

.register-link {
  color: #1abc9c !important;
}

.logout-link {
  color: #b93ce7 !important;
}

/* Основной контент */
.main-content {
  background-color: #533b77;
  color: #ffffff;
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Герой-секция */
.service-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Секция с тарифами */
.plans-section {
  padding: 5rem 0;
  background-color: rgba(83, 59, 119, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.plans-tabs {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn {
  flex: 1;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  color: #ffffff;
}

.tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.plan-card {
  padding: 2.5rem;
  color: #ffffff;
}

.plan-header {
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tech-note {
  color: #3498db;
  font-style: italic;
}

.plan-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.details-col {
  flex: 1;
}

.feature-list li, .included-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  color: #ffffff;
}

.feature-list li:before {
  content: '✓';
  color: #2ecc71;
  position: absolute;
  left: 0;
}

.included-list li:before {
  content: '•';
  color: #3498db;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.plan-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.plan-actions {
  display: flex;
  gap: 1rem;
}

.order-btn, .consult-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.order-btn {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  border: none;
}

.consult-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Форма заявки */
.order-section {
  padding: 5rem 0;
  background: rgba(83, 59, 119, 0.95);
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Страница автоматизации */
.automation-page {
  padding-top: 80px;
  background-color: #533b77;
}

.automation-hero {
  background: linear-gradient(rgba(83, 59, 119, 0.9), rgba(0, 0, 0, 0.7)), url('/img/automation/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 900px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 180px;
  color: #ffffff;
}

.feature-item svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

/* Решения */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.solution-card.highlighted {
  border: 2px solid #3498db;
}

.solution-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #3498db;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0;
}

.price-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-weight: bold;
  color: #3498db;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.solution-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  color: #ffffff;
}

.solution-features li:before {
  content: "✓";
  color: #2ecc71;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.solution-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Преимущества */
.equipment-benefits {
  padding: 60px 0;
  background-color: rgba(83, 59, 119, 0.95);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.benefit-card h3 {
  color: #ffffff;
}

/* Форма запроса */
.equipment-request {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  padding: 60px 0;
}

/* Адаптивность */
@media (max-width: 992px) {
  .service-hero h1 {
      font-size: 2.8rem;
  }
  
  .plan-details {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-hero {
      height: auto;
      padding: 6rem 0;
  }
  
  .form-row {
      flex-direction: column;
      gap: 0;
  }
  
  .tab-nav {
      flex-direction: column;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
  }
  
  .feature-item {
      width: 100%;
  }
  
  .categories-grid {
      grid-template-columns: 1fr;
  }
  
  .equipment-hero h1 {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
}


/* Стили для хлебных крошек */
.breadcrumbs {
    background-color: #533b77;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    margin-right: 5px;
}

.breadcrumb-item a {
    color: #e17400;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-separator {
    margin: 0 5px;
    color: #ffffff;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}


/* Страница аудита */
.audit-page {
    padding: 30px 0;
}

.audit-intro {
    margin-bottom: 40px;
    text-align: center;
}

.audit-intro img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.process-steps li {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: bold;
}

.audit-request {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.request-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}


/* Основной фон страницы */
body {
    background-color: #533b77;
    color: #ffffff;
}


/* Адаптивность */
@media (min-width: 992px) {
    .enroll-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    
    .enroll-info {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .education-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}


.services-page {
    padding: 2rem;
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h2 {
    font-size: 1.5rem;
    color: #e17400;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.service-category ul {
    list-style: disc inside;
    padding-left: 1rem;
}

.service-category li {
    margin-bottom: 0.5rem;
}
.search-box {
    margin-bottom: 2rem;
}

.search-box input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

mark {
    background-color: #e17400;
    color: whitesmoke;
    padding: 0 2px;
    border-radius: 2px;
}

/* Базовые стили */

/* Обнуление стандартных отступов */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

/* Контейнер для центрирования контента */
.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* HERO секция — главная */
.hero-section {
    background-color: #533b77;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background-color: #e17400;
    border-radius: 5px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Секция основного контента */
.content-section {
    background-color: #ffffff;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

/* Заголовки и текст */
.about-content h2 {
    color: #533b77;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Список возможностей */
.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.features-list li::before {
    content: "✔";
    color: #e17400;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Кнопка CTA */
.cta-button {
    text-align: center;
    margin-top: 30px;
}


.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button a:hover {
    background-color: #c96600;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 116, 0, 0.3);
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .content-section {
        padding: 30px 15px;
    }
}

/* Общие стили для секций */
.offices-section, .map-section, .service-section {
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #e17400;
}

.section-header p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

/* Стили для контактной информации */
.section-header p strong {
    color: #fcfcfc;
    font-weight: 600;
}

.section-header p a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-header p a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Стили для формы */
.service-form-container {
    background: e17400;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px white;
}

.service-form .form-group {
    margin-bottom: 25px;
}

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.service-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.service-form input:focus {
    border-color: #3498db;
    outline: none;
}

.service-btn {
    width: 100%;
    padding: 14px;
    background: #e17400;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #2980b9;
}

/* Адаптивность */
@media (max-width: 768px) {
    .offices-section, .map-section, .service-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .map-section h3 {
        font-size: 24px;
    }
    
    .map-section h4 {
        font-size: 18px;
    }
    
    .service-form-container {
        padding: 30px 20px;
    }
}
.service-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #ff5733, #ff8c00); /* Градиент */
    color: white;
    border: none;
    border-radius: 25px; /* Круглые углы */
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.5); /* Тень */
}

.service-btn:hover {
    background: linear-gradient(90deg, #ff7e5f, #ffae00); /* Изменение градиента при наведении */
    box-shadow: 0 8px 25px rgba(255, 87, 51, 0.8); /* Усиление тени при наведении */
}

.header-actions a {
    text-decoration: none;
}

/* Дополнительные стили для страницы контактов */
    .map-section {
        padding: 5rem 0;
        background-color: rgba(83, 59, 119, 0.95);
    }
    
    .office-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        margin-bottom: 3rem;
        transition: transform 0.3s ease;
    }
    
    .office-card:hover {
        transform: translateY(-5px);
    }
    
    .office-info {
        padding: 2rem;
    }
    
    .office-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #FF8E53;
    }
    
    .address {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-details p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-details a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .contact-details a:hover {
        color: #FF8E53;
        text-decoration: underline;
    }
    

    
    .section-header h2 i {
        margin-right: 15px;
        color: #FF8E53;
    }
    
    .email-link {
        color: #3498db;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .email-link:hover {
        color: #FF8E53;
        text-decoration: underline;
    }
    
    @media (min-width: 992px) {
        .office-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        
        .yandex-map {
            border-radius: 0 12px 12px 0;
            height: 100%;
        }
    }
    
    @media (max-width: 768px) {
        .office-info {
            padding: 1.5rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
    }



            /* Основные стили главной страницы */
        .hero-section {
            background: linear-gradient(135deg, #533b77 0%, #36274d 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white;
            text-align: center;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.15;
            z-index: 1;
        }
        
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero-section p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            display: inline-block;
            background: linear-gradient(90deg, #FF6B6B, #FF8E53);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 105, 107, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 105, 107, 0.4);
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 80px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #533b77, #FF8E53);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .service-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }
        
        .service-card h3 {
            color: #533b77;
            font-size: 1.8rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .service-card p {
            color: #555;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .more-link {
            color: #FF8E53;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
        }
        
        .more-link::after {
            content: '→';
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .more-link:hover::after {
            margin-left: 10px;
        }
        
        .stats-section {
            background: linear-gradient(135deg, #533b77 0%, #36274d 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            background: rgba(255,255,255,0.1);
            padding: 30px 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #FF8E53;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p {
                font-size: 1.2rem;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
        }