.page-content {
    color: #52606d;
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 1.25rem;
}

.page-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.page-content li {
    margin-bottom: 0.6rem;
}

.page-content strong {
    color: #1e293b;
    font-weight: 600;
}

.page-content a {
    color: #3b82f6;
    font-weight: 600;
}

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 0.75rem;
}

.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.image-zoom:hover img {
    transform: scale(1.10);
}