.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

/* Сетка */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Блок новости */
.newsblock {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.newsblock:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    border-color: #c7d2fe;
}

/* Заголовок */
.news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: linear-gradient(160deg, #5b5dcc, #4447f2, #373889);;
    margin-bottom: 0.8rem;
}

/* Основной текст */
.news-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Низ блока: дата и кнопка */
.news-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Дата */
.news-date {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Кнопка "Читать дальше" */
.read-more-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(160deg, #5b5dcc, #4447f2, #373889);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    font-weight: 500;
    transform: translateX(4px) scale(1.03);
    box-shadow: 0 6px 14px rgba(19, 20, 85, 0.4);
}
.formstyle{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
