.page-title {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}
.page-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
}
.page-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
@media (max-width: 768px) {
    .page-img {
        grid-template-columns: repeat(2, 1fr);
    }
}
.page-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}