
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #0b1f33;
    color: white;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
}
header {
    padding: 20px;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 50px;
    margin-right: 10px;
}
.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}
.breadcrumb a {
    color: white;
    text-decoration: none;
}
main {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}
.content-box {
    max-width: 800px;
    background-color: #152b46;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000040;
}
.content-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.timer {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}
.content-box h3 {
    margin-top: 20px;
    font-size: 18px;
}

.article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.cta-button {
  display: inline-block;
  background-color: #417dcf;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
  margin: 0 auto;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #5d8fd9; /* чуть более серый/светлый синий */
}
.highlight-link {
  color: #ffffff; /* например, золотистый */
  text-decoration: underline;
  font-weight: bold;
}
.video-wrapper {
  max-width: 800px;
  margin: 20px auto;
}
.client-story {
  max-width: 700px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  color: #d6d6d6;
  line-height: 1.5;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #0077cc;
}

.client-name {
  font-weight: 700;
  font-size: 1.1em;
  margin: 0;
}

.client-text {
  font-style: italic;
  background-color: #c2c2c2;
  padding: 15px 20px;
  border-left: 4px solid #0077cc;
  border-radius: 4px;
  margin: 0;
}
.highlight {
  color: #1c1c1c; /* например, оранжевый */
}
h2 {
  margin-top: 40px; /* отступ сверху */
  margin-bottom: 20px; /* отступ снизу (чтобы не лип к следующему тексту) */
  font-size: 1.8em; /* можно увеличить, если надо выделить */
  font-weight: bold;
}
.highlight-section {
  background-color: #434343; /* светлый фон для выделения */
  padding: 20px;
  border-left: 4px solid #4caf50; /* зелёная полоса слева, как акцент */
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.6;
}
.ai-opportunity strong {
  color: #d32f2f;
  font-weight: bold;
}
.ai-opportunity em {
  color: #d32f2f;
  font-style: normal;
  font-weight: 500;
}
.availability-note {
  background-color: #180000;
  padding: 20px;
  border-left: 4px solid #ff6600;
  margin-top: 30px;
  margin-bottom: 30px;
}

.availability-note p {
  font-size: 1.05em;
  line-height: 1.6;
}
figure {
  margin: 20px 0;
  text-align: center;
}

.image-caption {
  font-size: 0.95em;
  color: #d32f2f;
  margin-top: 8px;
}
.mission-statement p {
  line-height: 1.7;
  font-size: 1.05em;
  margin-top: 30px;
}
.signup-steps {
  margin-top: 40px;
  padding: 20px;
  background-color: #232323;
  border-radius: 12px;
}

.steps-list {
  list-style: decimal inside;
  padding-left: 0;
}

.steps-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.steps-list .highlight {
  color: #d10000;
  font-weight: bold;
}
.faq-section {
  margin-top: 40px;
  padding: 20px;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #d32f2f;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
}
.comments-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #fff; /* белый фон */
  border-radius: 8px; /* скругление углов */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* легкая тень */
}

.comments-section h2 {
  margin-top: -6px;
  margin-bottom: 20px;
  color: #222;
  font-size: 24px;
}

.comment {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.comment-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  font-weight: 600;
}

.comment-name {
  color: #000;
}

.comment-time {
  color: #999;
  font-style: italic;
}

.comment-text {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* Стили кнопки */
.add-comment-button {
  display: block;
  margin: 30px auto 0;
  padding: 12px 24px;
  background-color: #007BFF; /* синий цвет */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-comment-button:hover {
  background-color: #0056b3; /* темнее при наведении */
}
.new-comment {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-comment textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-family: Arial, sans-serif;
}

.new-comment textarea:focus {
  outline-color: #007BFF;
  border-color: #007BFF;
}

.new-comment button {
  align-self: flex-end;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-comment button:hover {
  background-color: #0056b3;
}
footer {
  background: #152b46;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

footer a {
  color: #0054a3;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.footer-email,
.footer-social,
.footer-legal {
  margin-bottom: 10px;
}

.footer-social span,
.footer-legal span {
  margin: 0 8px;
  color: #666;
}

.footer-copy {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}
.related-articles {

  padding: 15px;
  border-radius: 8px;
  color: white; /* базовый цвет текста */
}

.related-articles h3 {
  color: rgb(255, 255, 255);
}

.related-articles ul {
  list-style: none;
  padding-left: 0;
}

.related-articles li {
  margin-bottom: 8px;
}

.related-articles a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

.related-articles a:hover {
  text-decoration: underline;
}





.item {
  padding: 20px;
  background-color: #152b46;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.item:hover {
  background-color: #1e3555;
}

.item h2 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 10px;
}

.item h2 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.item h2 a:hover {
  color: #00bfff;
}

.item-description {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.item-separator {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #444;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 16px;
  background-color: #234;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pagination a:hover {
  background-color: #456;
}

.pagination a.active-page {
  font-weight: bold;
  background-color: #007BFF;
  color: #fff;
}