h2,
h3 {
    color: #13315c;
}

#about p {
    max-width: 700px;
}

#about img {
    transition: box-shadow 0.2s, transform 0.3s;
}

.language-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 0.75rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #13315C;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.language-card svg {
    margin-left: 0.5rem;
    vertical-align: middle;
    fill: #0B2545;
}

#about img:hover,
.language-card:hover {
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.13);
    transform: translateY(-2px) scale(1.03);
}

/* Animation delays for about sections */
.about-animate {
    opacity: 0;
    animation: fadeInRight 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.about-delay-1 {
    animation-delay: 0.1s;
}

.about-delay-2 {
    animation-delay: 0.2s;
}

.about-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}