
/*1 часть*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #fff;
            color: #333;
        }
        
        .hero-section {
            text-align: center;
            padding: 80px 20px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 40px;
            line-height: 1.4;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-button {
            display: inline-block;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            min-width: 200px;
            text-align: center;
        }
        
        .button-primary {
            background-color: #FFC107;
            color: #fff;
            border: 3px solid #FFC107;
            box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
        }
        
        .button-primary:hover {
            background-color: #FFB300;
            border-color: #FFB300;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
        }
        
        .button-secondary {
            background-color: #FFC107;
            color: #fff;
            border: 3px solid #FFC107;
            box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
        }
        
        .button-secondary:hover {
            background-color: #FFB300;
            border-color: #FFB300;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-button {
                padding: 14px 24px;
                min-width: 180px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-button {
                width: 100%;
                max-width: 300px;
            }
        }
/*2 часть*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }
        
        .about-preview {
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .about-preview::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
        }
        
        .about-preview::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25%;
            width: 50%;
            height: 4px;
            background: #FFC107;
            border-radius: 2px;
        }
        
        .section-text {
            text-align: center;
            font-size: 1.2rem;
            color: #ffffff;
            max-width: 800px;
            margin: 0 auto 70px;
            line-height: 1.8;
        }
        
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 30px;
        }
        
        .fact-item {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .fact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #FFC107;
        }
        
        .fact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FFC107, #FFD54F);
        }
        
        .fact-number {
            font-size: 4rem;
            font-weight: 800;
            color: #FFC107;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            line-height: 1;
        }
        
        .fact-text {
            font-size: 1.1rem;
            color: #444;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Анимация чисел при загрузке */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fact-item:nth-child(1) { animation-delay: 0.1s; }
        .fact-item:nth-child(2) { animation-delay: 0.3s; }
        .fact-item:nth-child(3) { animation-delay: 0.5s; }
        
        .fact-item {
            animation: countUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        /* Адаптивность */
        @media (max-width: 1024px) {
            .facts-grid {
                gap: 30px;
            }
            
            .fact-number {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-preview {
                padding: 70px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-text {
                font-size: 1.1rem;
                margin-bottom: 50px;
                padding: 0 20px;
            }
            
            .facts-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
                gap: 25px;
            }
            
            .fact-item {
                padding: 35px 25px;
            }
            
            .fact-number {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-preview {
                padding: 50px 15px;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .section-text {
                font-size: 1rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }
            
            .fact-item {
                padding: 30px 20px;
            }
            
            .fact-number {
                font-size: 3rem;
            }
            
            .fact-text {
                font-size: 1rem;
            }
        }
/*3 часть*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }
        
        .services-preview {
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .services-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #222;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #FFC107;
            border-radius: 2px;
        }
        
        .section-text {
            text-align: center;
            font-size: 1.2rem;
            color: #ffffff;
            max-width: 600px;
            margin: 40px auto 60px;
            line-height: 1.8;
        }
        
        /* ПРОСТАЯ СЕТКА 2х2 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 колонки */
            gap: 30px;
            margin-bottom: 60px;
        }
        
        /* ОБЩИЕ СТИЛИ КАРТОЧЕК */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255, 193, 7, 0.15);
            border-color: #FFC107;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FFC107, #FFD54F);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, transparent 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .service-card:hover::after {
            opacity: 1;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #FFC107, #FFD54F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        
        .service-icon svg {
            width: 40px;
            height: 40px;
        }
        
        .service-card-title {
            font-size: 1.5rem;
            color: #222;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-card-list {
            text-align: left;
            list-style: none;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            flex-grow: 1;
        }
        
        .service-card-list li {
            padding: 10px 0;
            color: #555;
            position: relative;
            padding-left: 30px;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .service-card-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FFC107;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .service-card-link {
            display: inline-block;
            font-size: 1rem;
            font-weight: 600;
            color: #FFC107;
            text-decoration: none;
            padding: 12px 25px;
            border: 2px solid #FFC107;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            margin-top: auto;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            bottom: 5px;
        }
        
        .service-card-link:hover {
            background: #FFC107;
            color: white;
            padding-right: 35px;
        }
        
        .service-card-link::after {
            content: '→';
            margin-left: 5px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .service-card-link:hover::after {
            opacity: 1;
            margin-left: 10px;
        }
        
        .section-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .button {
            display: inline-block;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #FFC107, #FFD54F);
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }
        
        .button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(255, 193, 7, 0.4);
        }
        
        .button::after {
            content: '→';
            margin-left: 10px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .button:hover::after {
            transform: translateX(5px);
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        
        /* АДАПТИВНОСТЬ */
        
        /* Для планшетов (до 900px) */
        @media (max-width: 900px) {
            .services-grid {
                gap: 25px;
            }
            
            .service-card {
                padding: 35px 25px;
            }
            
            .service-card-title {
                font-size: 1.4rem;
                min-height: 55px;
            }
        }
        
        /* Для мобильных (до 768px) */
        @media (max-width: 768px) {
            .services-preview {
                padding: 70px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-text {
                font-size: 1.1rem;
                margin: 30px auto 50px;
            }
            
            .services-grid {
                gap: 20px;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }
            
            .service-icon svg {
                width: 35px;
                height: 35px;
            }
            
            .service-card-title {
                font-size: 1.3rem;
                min-height: 50px;
                margin-bottom: 20px;
            }
            
            .service-card-list {
                margin-bottom: 30px;
            }
            
            .service-card-list li {
                font-size: 0.95rem;
                padding-left: 25px;
            }
            
            .button {
                padding: 16px 40px;
                font-size: 1rem;
            }
        }
        
        /* Для очень маленьких мобильных (до 600px) - 1 в ряд */
        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr; /* 1 колонка */
                max-width: 400px;
                margin: 0 auto 50px;
                gap: 20px;
            }
            
            .services-preview {
                padding: 50px 15px;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .section-text {
                font-size: 1rem;
                margin: 25px auto 40px;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .service-card-title {
                font-size: 1.2rem;
                min-height: auto;
            }
            
            .service-card-list li {
                font-size: 0.9rem;
                padding-left: 20px;
            }
            
            .service-card-link {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .button {
                width: 100%;
                max-width: 300px;
                padding: 15px 30px;
            }
        }
        
        /* Для средних мобильных (601px - 768px) - оставляем 2 в ряд */
        @media (min-width: 601px) and (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

/*4 часть*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }
        
        .contacts-preview {
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .contacts-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #FFC107;
            border-radius: 2px;
        }
        
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-method {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(255, 193, 7, 0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .contact-method:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
            border-color: #FFC107;
        }
        
        .contact-method::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 213, 79, 0.02) 100%);
            z-index: 1;
        }
        
        .contact-title {
            font-size: 1.5rem;
            color: #222;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .contact-title::before {
            content: '';
            width: 30px;
            height: 30px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .contact-method:nth-child(1) .contact-title::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFC107'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
        }
        
        .contact-method:nth-child(2) .contact-title::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFC107'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
        }
        
        .contact-method:nth-child(3) .contact-title::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFC107'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
        }
        
        .contact-link {
            display: block;
            font-size: 1.4rem;
            font-weight: 600;
            color: #222;
            text-decoration: none;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            padding: 10px 0;
        }
        
        .contact-link:hover {
            color: #FFC107;
            transform: scale(1.05);
        }
        
        .contact-text {
            font-size: 1.4rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            padding: 10px 0;
        }
        
        .contact-note {
            font-size: 0.95rem;
            color: #666;
            position: relative;
            z-index: 2;
            font-style: italic;
        }
        
        .section-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .button {
            display: inline-block;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .button-primary {
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }
        
        .button-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(255, 193, 7, 0.4);
        }
        
        .button-primary::after {
            content: '→';
            margin-left: 10px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .button-primary:hover::after {
            transform: translateX(5px);
        }
        
        /* Анимация появления */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-method {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .contact-method:nth-child(1) { animation-delay: 0.1s; }
        .contact-method:nth-child(2) { animation-delay: 0.2s; }
        .contact-method:nth-child(3) { animation-delay: 0.3s; }
        
        /* Адаптивность */
        @media (max-width: 1024px) {
            .contacts-grid {
                gap: 30px;
            }
            
            .contact-link, .contact-text {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .contacts-preview {
                padding: 70px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }
            
            .contacts-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 50px;
                gap: 25px;
            }
            
            .contact-method {
                padding: 35px 25px;
            }
            
            .contact-link, .contact-text {
                font-size: 1.3rem;
            }
            
            .button {
                padding: 16px 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .contacts-preview {
                padding: 50px 15px;
            }
            
            .section-title {
                font-size: 1.9rem;
                margin-bottom: 40px;
            }
            
            .contact-method {
                padding: 30px 20px;
            }
            
            .contact-title {
                font-size: 1.3rem;
            }
            
            .contact-link, .contact-text {
                font-size: 1.2rem;
            }
            
            .button {
                width: 100%;
                max-width: 300px;
                padding: 15px 30px;
            }
        }