/* Основные стили */
:root {
    --primary: #1a237e;       /* Основной синий цвет */
    --secondary: #4f626a;     /* Акцентный красный */
    --accent: #ffab00;        /* Желтый для выделения */
    --dark: #0d0d21;          /* Темный фон */
    --light: #f8f9fa;         /* Светлый фон */
    --text: #333;             /* Основной текст */
    --text-light: #666;       /* Второстепенный текст */
  }
  
  body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Шапка сайта */
  .header {
    /* background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    margin-bottom: 50px;
  }
  
  .header__logo img {
    height: 50px;
  }

  .header__nav {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    /* min-height: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__nav img {
    width: 100%;
    height: 100%;
  }
  
  /* Основной контент */
  .main-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 30px 0;
  }
  
  h1 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
  }
  
  h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
  }
  
  h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
  }
  
  /* Кнопка */
  .btn {
    display: inline-block;
    background: linear-gradient(to right, var(--secondary), #f44336);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
  }
  
  /* Списки преимуществ */
  .feature-list {
    margin: 20px 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--accent);
    border-radius: 50%;
  }
  
  /* Блок безопасности */
  .security-block {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
  }
  
  /* Подвал */
  .footer {
    background: var(--dark);
    color: white;
    padding: 30px 0;
    text-align: center;
  }

  .footer__nav ul {
    list-style-type: none;
  }

  .btn-box {
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    color: #202021;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 15px;
  }

.btn-size-big {
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    text-align: center;
    text-decoration: none;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    background-image: linear-gradient(2deg,#f06 0,#f06 100%);
    transform: skew(-10deg, 0);
    display: inline-block;
    white-space: normal;
    color: #fff;
    font-weight: bold;
  }

  
  /* Адаптивность */
  @media (max-width: 768px) {
    .header__logo img {
      height: 40px;
    }

    .header__nav {
        /* height: 100px; */
        object-fit:cover;
    }
    
    h1 {
      font-size: 1.8rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .main-content {
      padding: 20px;
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }