/* Стили для таблиц */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th, table td {
  text-align: left;
  padding: 10px;
  border: 1px solid #ccc;
}

table th {
  background: #0078d7;
  color: white;
}

table tr:nth-child(even) {
  background: #f9f9f9;
}
/* Общие стили */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f9fa;
}

h1, h2, h3 {
  margin: 0;
  color: #212529;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

a {
  text-decoration: none;
  color: #0078d7;
}

a:hover {
  color: #005cb2;
}

/* Логотип */
.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Услуги */
#services {
  background: #f9f9f9;
  padding: 50px 20px;
}

#services h2 {
  font-size: 2rem;
  color: #0078d7;
  text-align: center;
  margin-bottom: 10px;
}

#services p {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Блок услуг */
.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Текстовая часть услуги */
.service-content {
  flex: 1;
  padding: 20px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #0078d7;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Изображение услуги */
.service-image {
  flex: 1;
  text-align: right;
}

.service-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  height: auto;
  border-left: 2px solid #f1f1f1;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
  }

  .service-content {
    text-align: center;
  }

  .service-image img {
    border-left: none;
    border-top: 2px solid #f1f1f1;
    width: 100%;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0078d7, #00c4ff);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.hero .btn {
  background: white;
  color: #0078d7;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Telegram */
.telegram-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 20px;
}

.telegram-icon {
  width: 24px;
  margin-right: 8px;
}

/* Таблица */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}

table th {
  background: #0078d7;
  color: white;
}