
        :root {
            --primary-gradient: radial-gradient(97.97% 127.28% at 100% 10%, #6aafff, #108afa);
            --primary-color: #108afa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --accent-blue: #1a73e8;
            --light-gray: #f5f7fa;
            --border-color: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Шапка */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            color: var(--primary-color);
			
			    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
        }
        .logo img{
           
    width: 42px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }
       .ade{
		   
            text-decoration: none;
	   }
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        .cta-button {
            background: var(--primary-gradient);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 138, 250, 0.3);
        }
        
     
     /* Основной контент для ПК */
main {
    margin-top: 100px;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    main {
        margin-top: 180px; /* можно уменьшить отступ для мобильных */
        font-size: 14px;   /* шрифт меньше для мобильных */
    }
}

        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
        }
        
        /* Блок калькулятора */
        .calculator-section {
            background: var(--light-gray);
        }
        
        .calculator-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .calculator {
            flex: 1;
            min-width: 300px;
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .calculator h2 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .range-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        input[type="range"] {
            flex: 1;
            height: 5px;
            -webkit-appearance: none;
            background: #e0e0e0;
            border-radius: 5px;
            outline: none;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            cursor: pointer;
        }
        
        .range-value {
            min-width: 60px;
            text-align: center;
            font-weight: 600;
        }
        
        .calculator-result {
            margin-top: 30px;
            padding: 20px;
            background: var(--light-gray);
            border-radius: 8px;
            display: none;
        }
        
        .calculator-result.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .benefits {
            flex: 1;
            min-width: 300px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
		.pad {
			    padding-top: 15px;
    padding-bottom: 15px;

		}
        
        .benefit-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }
		#article h1, h2, h3{
			    margin-top: 10px;
    margin-bottom: 10px;

		}
        
		#article img{
		
    max-width: 100%;

		}
        /* Блок шагов */
        .steps-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .step:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* Тест на вероятность одобрения */
        .quiz-section {
            background: var(--light-gray);
        }
        
        .quiz-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .quiz-step {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .quiz-step.active {
            display: block;
        }
        
        .quiz-question {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .quiz-option {
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .quiz-option:hover {
            border-color: var(--primary-color);
            background: rgba(16, 138, 250, 0.05);
        }
        
        .quiz-result {
            text-align: center;
            padding: 30px;
        }
        
        .result-percentage {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        /* Тарифы */
        .tariffs-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .tariff {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background: var(--white);
            border-radius: 10px;
            padding: 30px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            position: relative;
            transition: transform 0.3s;
        }
        
        .tariff:hover {
            transform: translateY(-10px);
        }
        
        .tariff.popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .tariff.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .tariff-name {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .tariff-price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .tariff-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .tariff-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        /* Блок преимуществ */
        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .benefit-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Отзывы */
        .reviews-section {
            background: var(--light-gray);
        }
        
        .reviews-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .review-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
        }
        
        .review-name {
            font-weight: 600;
        }
        
        .review-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .review-text {
            font-style: italic;
            color: var(--text-light);
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
		.nav-active{
	
    color: #1a73e8;
		}
        .lkbtn{
			display: block;
    text-align: center;
    margin: 10px;
		}
		
		.contacts-section {
  padding: 60px 20px;
  background: #f8f9fb;
}

.contacts-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contacts-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}

.contacts-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contacts-info {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contacts-info a {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-info a:hover {
  color: #007bff;
}

.contacts-map {
  flex: 1 1 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
  .contacts-content {
    flex-direction: column;
  }

  .contacts-info, .contacts-map {
    width: 100%;
  }

  .contacts-title {
    font-size: 1.75rem;
  }
}

        /* Футер */
        footer {
            background: #2c3e50;
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            nav ul {
                margin: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .calculator-container {
                flex-direction: column;
            }
            
            .steps-container {
                flex-direction: column;
            }
            
            .tariff.popular {
                transform: none;
            }
            
            .tariff.popular:hover {
                transform: translateY(-10px);
            }
        }