.page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
}

.page-title h1 {
    font-size: 2.9rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.about-content h2 {
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 1.6rem;
    }

    .page-title {
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.3rem;
    }
}

.privacy-hidden {
    display: none;
}

.readmore-btn-wrapper {
    text-align: center;
}

.read-more-btn {
    margin-top: 15px;
    padding: 9px 22px;
    font-size: 16px;
    border: 1px solid #000;
    color: #000;
    background: #fff;
    border-radius: 28px;
    cursor: pointer;
    transition: 0.3s ease;
    padding-right: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.read-more-btn:hover {
    border-color: var(--accent-2);
}

.arrow img {
    margin-top: 3px;
    width: 20px;
    height: 20px;
}