body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #FFFFFF;
  color: #121212;
  font-weight: 400;
}

.static-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  display: block; /* Гарантируем вертикальное расположение */
}

.static-page {
  margin-top: 60px;
}

.static-page h1 {
  color: #000000;
  font-size: 2.7em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.static-page section {
  margin-bottom: 40px;
  display: block; /* Убедимся, что секции идут вертикально */
}

.static-page h2 {
  color: #00000;
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}

.static-page p {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  margin: 0 0 20px;
}

.static-page a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.static-page a:hover {
  color: #FF6200;
}

.company-section ul {
    list-style: none;
    padding: 0;
}
.company-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.company-section ul li:before {
    content: "✔";
    color: #1a73e8;
    position: absolute;
    left: 0;
}
.company-section strong {
    color: #333;
    font-weight: 700;
}

@media (max-width: 768px) {
  .static-container {
    padding: 40px 15px;
  }

  .static-page h1 {
    font-size: 1.8em;
  }

  .static-page h2 {
    font-size: 1.3em;
  }

  .static-page p {
    font-size: 0.9em;
  }

  .static-page section {
    margin-bottom: 30px;
  }
}