.about-page {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fafafa;
    font-size: 1.1rem;
    line-height: 1.7;
    border-radius: 15px;
    box-shadow: 0 0 30px #a700ff99;
}

.about-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.about-block {
    margin-bottom: 40px;

}

.about-block p {
    margin-bottom: 1em;
    font-size: 1.15rem;
    color: #ffffff;
    text-align: center;
}

.about-block strong {
    color: #d154ff;
}

.about-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.back-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.back-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #d154ff;
    color: #000;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #b243d9; /* чуть темнее при наведении */
}

/* Галерея */
.about-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-gallery img {
    max-width: 220px;
    border-radius: 10px;
    box-shadow: 0 0 15px #a700ff;
    transition: transform 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}