

/* Start:/local/templates/main_page/template_styles.css?176150092310355*/
 
 /* Основные стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 60px 0;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            color: #0a1423;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            color: #b7bc12;
        }

        p {
            margin-bottom: 15px;
        }

        a {
            color: #e6005e;
            text-decoration: none;
            transition: color 0.3s;
        }
		ul{
			
			list-style:none;
		}
        a:hover {
            color: #b7bc12;
        }

        .btn {
            display: inline-block;
            background-color: #b7bc12;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #e6005e;
            color: white;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #e6005e;
        }
		.logo span{
			color: #b7bc12;
		}

        .location-selector {
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
        }

        .location-icon {
            margin-right: 8px;
            color: #b7bc12;
        }

        .location-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            width: 90%;
            max-width: 800px;
            border-radius: 5px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #0a1423;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .city-link {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            text-align: center;
            transition: all 0.3s;
        }

        .city-link:hover {
            background-color: #f5f5f5;
            border-color: #b7bc12;
        }
		 /* Преимущества */
        .advantages {
            background-color: white;
            padding: 80px 0;
        }

        .advantages h2 {
            text-align: center;
            margin-bottom: 50px;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #fff;
            border-top: 4px solid #b7bc12;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .advantage-icon {
            font-size: 50px;
            color: #b7bc12;
            margin-bottom: 20px;
        }

        .advantage-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #0a1423;
        }

        .advantage-card p {
            color: #666;
            line-height: 1.6;
        }
        /* Баннер */
        .banner {
            background: linear-gradient(rgba(217, 236, 255, 0.85), rgba(217, 236, 255, 0.85)), url(https://huawei-insider.com/wp-content/uploads/2024/04/kak-vybrat-samye-luchshie-prilozheniya-mikrozajmov-2048x1088.jpg);
			background-size: cover;
			background-repeat: no-repeat;
			background-position: center;
            padding: 130px 0;
            text-align: center;
        }

        .banner h1 {
            color: #0a1423;
            margin-bottom: 20px;
        }

        /* О компании */
        .about {
            background-color: #f9f9f9;
        }

        /* Форма займа */
        .loan-form {
            background-color: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
		.about-content {
			display: flex;
			flex-wrap: wrap;
			
			gap: 30px;
		}
		.about-text {
			flex: 1;
			min-width: 300px;
		}
		.about-image {
			flex: 1;
			min-width: 300px;
			text-align: center;
			position:relative;
		}
		.about-image img{
			width:100%;
			border-radius:10px;
		}
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 16px;
        }

        /* Отзывы */
        .reviews {
            background-color: #f9f9f9;
        }

        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .review-name {
            font-weight: bold;
        }

        .review-date {
            color: #777;
        }

        .review-rating {
            color: #e6005e;
            margin-bottom: 10px;
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            background-color: #f5f5f5;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 15px;
            max-height: 500px;
        }
		.cnt{
			text-align:center;
		}
        .faq-icon {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Контакты */
        .contacts {
            background-color: white;
        }

      
	  

        .contact-info {
            margin-bottom: 20px;
        }

        .contact-info i {
            color: #e6005e;
            margin-right: 10px;
            width: 20px;
        }

        #map {
            height: 400px;
            width: 100%;
            background-color: #f0f0f0;
            border-radius: 5px;
        }

        /* Кнопка вверх */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #b7bc12;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s, background-color 0.3s;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
        }

        .scroll-to-top:hover {
            background-color: #e6005e;
        }

        /* Футер */
        footer {
            background-color: #0a1423;
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
			.advantages-grid {
                grid-template-columns: 1fr;
            }
            .contacts-container {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
			.header-container .btn{
				display:none;
			}
        }
/* End */
/* /local/templates/main_page/template_styles.css?176150092310355 */
