.about-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 150px);
    padding: 24px 0 32px;
}

.about-content {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(20, 31, 48, 0.35) 18%, rgba(9, 16, 28, 0.62) 74%);
    border: 1px solid rgba(207, 220, 241, 0.27);
    padding: 40px;
    color: #f2f5fb;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(2, 8, 18, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: min(920px, 75%);
    text-align: justify;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.about-content h2,
.about-content h3 {
    letter-spacing: 0.01em;
}

.about-content h2 {
    margin-top: 0;
}

.about-section + .about-section {
    margin-top: 26px;
}

.about-section p {
    margin: 10px 0 0;
}

.about-content a {
    color: #dbe7ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.about-content a:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

.social-icons {
    text-align: center;
    margin-top: 28px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.cat img {
    width: 500px;
    height: 375px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
    opacity: 1;
}

@media (max-width: 1368px) {
    .about-container {
        min-height: calc(95vh - 150px);
        padding: 20px 0;
    }

    .about-content {
        max-width: 90%;
        font-size: 14px;
        padding: 20px;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 1080px) {
    .about-container {
        min-height: calc(85vh - 160px);
        padding: 20px 0;
    }

    .about-content {
        max-width: 90%;
        font-size: 16px;
        padding: 15px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }
}
