/* Подключение шрифтов семейства Arsenal */

@font-face {
    font-family: 'Arsenal';
    src: url('fonts/Arsenal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url('fonts/Arsenal-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url('fonts/Arsenal-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url('fonts/Arsenal-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
        /* Общие стили и сброс */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arsenal', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Шапка сайта */
header {
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	position: relative;
}
.logo {
	font-size: 24px;
	font-weight: bold;
	color: #0077b6;
	text-decoration: none;
	padding-left: 60px;
}
.logo img {
	width: auto;
	height: 46px;
	position: absolute;
	left: 0px;
	top: 14px;
}
        nav a {
            color: #555;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #0077b6;
        }
        .cta-phone {
            background: #0077b6;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }
        .cta-phone:hover {
            background: #0096c7;
        }
.h2-home {
	text-align: center;
	margin-top: 0;
	margin-bottom: 49px;
	font-size: 50px;
}
        /* Отзывы*/
.container.otziv1 {
	padding-top: 55px;
	padding-bottom: 55px;
}

.otziv2 {
	width: 100%;
	height: 800px;
	overflow: hidden;
	position: relative;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
        /* Отзывы конец*/
        /* Главный баннер (Hero) */
.hero {
	background: linear-gradient(135deg, #3fa4c5 0%, #5da5bd 100%);
	padding: 80px 0;
	text-align: left;
	position: relative;
}
.slidepng {
	position: absolute;
	right: 201px;
	bottom: 0;
	width: 251px;
}
.hero h1 {
	font-size: 42px;
	color: #fff;
	margin-bottom: 20px;
}
.hero p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: 0;
}
        .btn-appointment {
            background: #0077b6;
            color: #fff;
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-appointment:hover {
            background: #005f73;
        }


        /* Секция Услуг */
        .services {
            padding: 60px 0;
            background: #fff;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: #03045e;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .service-card {
            background: #f8fafc;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-5px);
        }
        .service-card h3 {
            margin-bottom: 10px;
            color: #0077b6;
        }

        /* Форма записи */
        .appointment-section {
            padding: 60px 0;
            background: #f1f5f9;
        }
        .form-container {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-group input, .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #cbd5e1;
            border-radius: 4px;
            font-size: 16px;
        }
        .submit-btn {
            width: 100%;
            background: #0077b6;
            color: #fff;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            cursor: pointer;
            font-weight: bold;
        }
        .submit-btn:hover {
            background: #005f73;
        }

        /* Контакты */
        .contacts {
            padding: 60px 0;
            background: #fff;
            text-align: center;
        }
        .contacts p {
            font-size: 18px;
            margin-bottom: 10px;
        }

        /* Подвал */
        footer {
            background: #03045e;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
        }
.call-footer {
	background: #0077b6;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
	margin-top: 10px;
	margin-bottom: 10px;
	display: inline-block;
}
.zapisat {
	background: #00b6ad;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	xx`x	
	font-weight: bold;
	transition: background 0.3s;
}
        /* Адаптивность */
        @media (max-width: 768px) {
            .header-grid {
                flex-direction: column;
                gap: 15px;
            }
            nav a {
                margin: 0 10px;
            }
            .hero h1 {
                font-size: 30px;
            }
.text-center {
	text-align: center;
}
header {
	position: relative;
}
        }