.page-title-wrapper {

    text-align: center;
    color: white;
    padding: 2rem;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-title-wrapper.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.page-title-content {
    max-width: 1200px;
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .page-subtitle {
        font-size: 1rem;
        color: #ffffff;
    }
}