.logo-page {
    width: 85%;
    max-width: 900px;
    margin: 60px auto;
}

.logo-page > h1 {
    text-align: center;
    font-size: 36px;
    color: #22223b;
    margin-bottom: 40px;
}

.logo-box {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    gap: 50px;
}

.logo-box img {
    width: 260px;
    height: 260px;
    object-fit: contain;
}

.logo-text {
    flex: 1;
}

.logo-text h2 {
    color: #7c3aed;
    font-size: 28px;
    margin-bottom: 15px;
}

.logo-text p {
    line-height: 1.8;
    color: #555;
}


@media (max-width: 768px) {

    .logo-page {
        width: 90%;
        margin: 40px auto;
    }

    .logo-page > h1 {
        font-size: 30px;
    }

    .logo-box {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        text-align: center;
    }

    .logo-box img {
        width: 200px;
        height: 200px;
    }

}