/* About Content - Content Box Side (Right) with Enhanced Glow */
.about-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-content-box {
    padding: 2.5rem;
    border: 4px solid #00f6fe;
    border-radius: 20px;
    background: rgba(0, 246, 254, 0.05);
    box-shadow:
        0 0 40px rgba(0, 246, 254, 0.5),
        0 0 80px rgba(0, 246, 254, 0.3),
        0 0 120px rgba(0, 246, 254, 0.15),
        inset 0 0 40px rgba(0, 246, 254, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: contentBoxPulse 3s ease-in-out infinite alternate;
}

@keyframes contentBoxPulse {
    from {
        box-shadow:
            0 0 40px rgba(0, 246, 254, 0.5),
            0 0 80px rgba(0, 246, 254, 0.3),
            inset 0 0 40px rgba(0, 246, 254, 0.2);
        border-color: rgba(0, 246, 254, 0.8);
    }

    to {
        box-shadow:
            0 0 60px rgba(0, 246, 254, 0.7),
            0 0 120px rgba(0, 246, 254, 0.4),
            inset 0 0 50px rgba(0, 246, 254, 0.3);
        border-color: #00f6fe;
    }
}

.about-content-box h2 {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 246, 254, 0.5);
    text-align: center;
}

.about-intro {
    color: #a1a8c0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}