* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
	background: #f0f0f0;
	color: #101010;
    line-height: 1.6;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
}
@media (max-width: 700px) {
	.container {
		padding: 20px 5px;
	}
}

.header {
    background: linear-gradient(to right,  rgba(102,203,232,1) 0%,rgba(0,158,195,1) 50%,rgba(64,195,232,1) 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	margin-bottom: 25px;
}

.header-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 4px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.text {
	background: rgba(255, 255, 255, .9);
	border: 2px solid rgba(0,158,195,.8);
	padding: 16px;
}
.text h1 {
    color: #000;
	position: relative;
    margin-bottom: 40px;
    font-size: 2.4em;
	line-height: 1.2;
	text-align: center;
}

.text h2 {
    color: rgb(0,58,95);
	position: relative;
    margin: 25px 0 20px;
	padding-top: 10px;
    font-size: 2em;
	line-height: 1.2;
}
.text h2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 188px;
	height: 1px;
	background: #d76832;
	opacity: .3;
}

.text h3 {
    color: rgb(0,58,95);
    margin: 20px 0 10px;
    font-size: 1.5em;
	line-height: 1.2;
}
@media (max-width: 750px) {
	.text h1 {
		font-size: 1.8em;
	}
	.text h2 {
		font-size: 1.6em;
	}
	.text h3 {
		font-size: 1.5em;
	}
}


.text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.text ul, .text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.text li {
    margin-bottom: 8px;
}

.text img {
	display: block;
    max-width: 100%;
    height: auto;
    margin: 5px auto 20px;
    border-radius: 8px;
}

.text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.text th, .text td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.text th {
    background-color: #0066cc;
    color: white;
}

.text tr:nth-child(even) {
    background-color: #f9f9f9;
}

.text blockquote {
    border-left: 4px solid #ff6600;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

.faq {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, .95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq h2 {
    color: rgb(0,58,95);
    margin-bottom: 25px;
}

.faq h3 {
    color: rgb(0,58,95);
    margin: 20px 0 10px;
}

.footer {
    background: linear-gradient(to bottom,  rgba(102,203,232,1) 0%,rgba(0,158,195,1) 50%,rgba(64,195,232,1) 100%);
    padding: 20px 0 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #ff6600;
}

.footer-bottom {
    display: flex;
	justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #fff;
}

.warning {
    color: #000;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .text table {
        display: block;
        overflow-x: auto;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}