.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.blog-section {
    margin-bottom: 60px;
}

.blog-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.article-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 350px;
    padding: 30px;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.article-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-link:hover {
    color: #e55a5a;
}

.categories-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.categories-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    transition: background 0.3s;
}

.category-item:hover {
    background: #ff6b6b;
}

.category-item:hover .category-name,
.category-item:hover .category-count {
    color: white;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.category-count {
    font-size: 14px;
    color: #666;
    margin: 0;
}