h1 {
    line-height: 1.3;         
    font-weight: 800;        
    color: #333;          
    text-align: center;     
    letter-spacing: -0.01em; 
}

p{
	font-size: 20px; 
	font-weight: 500; 
}

.tac{
	text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
	
	p{
		font-size: 18px; 
		font-weight: 500; 
		text-align: center;
	}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    margin-bottom: 30px;
}

/* Сетка категорий */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Карточка */
.category-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: 0.2s ease;
	height: 170px;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card-image {
    margin-bottom: 10px;
	height: 100px;
}

.card-image img {
    max-width: 100%;
    height: auto;
}

.card-title {
    font-size: 16px;
    margin: 0;
}

/* Текстовый блок */
.about-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    line-height: 1.6;
}
.category-card-h2-box{
	height: 100%;
}

/*-----*/

.intro-text {
    font-size: 1.1rem;
    background: #f8f9fa;
    padding: 15px;
    border-left: 5px solid #333;
    margin-bottom: 30px;
	text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefits-list .icon {
    font-size: 24px;
    margin-right: 15px;
    background: #eef2f7;
    padding: 10px;
    border-radius: 50%;
}

.benefits-list h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2rem;
}

.summary-box {
    margin-top: 40px;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 12px;
    text-align: center;
}

.cta-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-top: 15px;
}

@media (max-width: 992px) {
	.card-title {
		font-size: 18px;
		margin: 0;
	}
	h2{
		font-size: 20px;
	}
	.categories {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 20px;
		margin-bottom: 40px;
	}
}

@media (max-width: 600px) {
	.card-title {
		font-size: 22px;
		margin: 0;
	}
    .benefits-list li { flex-direction: column; text-align: center; }
    .benefits-list .icon { margin: 0 auto 10px; }
}