
  :root {
    --primary-color: #EE3424;
    --secondary-color: #CC3333;
    --bg-gradient-start: linear-gradient(135deg, #f9f9f9, #ffffff);
    --accent-color: #007BFF;
    --text-color: #333;
    --border-radius: 15px;
    --transition-time: 0.4s ease;
  }

  .container {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
  }

  /* Баннер с градиентом */
  .banner {
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    
  }
  .banner-text h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
  }
  .apply-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-time);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .apply-button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: #eee;
  }
  .banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: var(--border-radius);
  }

  /* Преимущества */
  .features {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
  }
  
  .feature {
    flex: 1 0 23%;
    min-width: 230px;
    /*border: 1px solid #eee;*/
    display: flex;
    align-items: start;
    padding: 24px;
    background-color: transpered;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
  }
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .features-img {
    height: 60px; 
    width: auto; 
    padding-right: 10px !important;
  }
  
  .step-number-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 30%;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 18px;
  }

  @media (max-width: 992px) {
    .features {
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .feature {
      flex: 1 0 48%;
    }
  }
  @media (max-width: 600px) {
    .feature {
      flex: 1 0 100%;
    }
  }

  /* Цены - обновлённая таблица */
  table.pricing-table {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 20px;
    border-collapse: separate;
    margin: 40px 0;
    overflow: hidden;
  }
  table.pricing-table th,
  table.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
  }
  table.pricing-table th {
    background-color: #fafafa;
    font-weight: bold;
    color: var(--primary-color);
  }

  /* Текстовый блок */
  .text-block {
    margin: 40px 0;
    color: var(--text-color);
  }

  /* Форма обратной связи и FAQ */
  .contact-and-faq {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
  }
  .contact-form,
  .faq-section {
    flex: 1;
    min-width: 300px;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: border-color 0.3s ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  .contact-form button {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .contact-form button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  }

  /* FAQ - Аккордеон */
  .modern-accordion {
    width: 100%;
    max-width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  .accordion-title {
    background-color: transparent;
    color: black;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    transition: all var(--transition-time);
    border-radius: var(--border-radius);
    margin-bottom: 4px;
    border: 1px solid #e0e0e0;
  }
  .accordion-title:hover {
    background-color: transparent;
    border: 1px solid #EE3424;
  }
  .accordion-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -4px;
    display: block;
  }
  .accordion-content {
    background-color: #f9f9f9;
    padding: 0 24px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
  }
  .accordion-content.open {
    max-height: 2000px;
    padding: 24px;
  }
  
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 30%;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    vertical-align: middle;
  }