.page-content-container {
    max-width: 60%;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 32px 20px 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 rgba(31,38,135,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 24px;
    text-align: center;
}
.page-content-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    width: 100%;
    word-break: break-word;
}
@media (max-width: 800px) {
    .page-content-container {
        max-width: 98vw;
        padding: 18px 4vw 24px 4vw;
    }
    .page-title {
        font-size: 1.4rem;
    }
}
.company-logo {
    text-align: center;
    margin-bottom: 20px;
    min-height: 60px; /* layout jump olmasın */
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo img {
    max-width: 100%;
    height: auto;
}

.company-logo-img {
    opacity: 0;
    transition: opacity .25s ease-in-out;
}
.company-logo-img.loaded {
    opacity: 1;
}

/* Page-specific lightweight header */
.page-topbar {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}