.s-about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.s-about::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.s-about::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 85, 170, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about>h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light-black);
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.about>h1 span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about>h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 85, 170, 0.4), rgba(255, 102, 0, 0.4)), url(images/about_background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 102, 0, 0.1) 0%,
            transparent 50%,
            rgba(0, 85, 170, 0.1) 100%);
    pointer-events: none;
}

.about-content>p {
    font-size: 1.15rem;
    line-height: 2rem;
    color: #ffffff;
    text-align: center;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-content>p>span {
    color: var(--orange);
    font-weight: 600;
}

.about-content>p::before {
    display: none;
}

.about-content>p:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}



@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media screen and (max-width: 992px) {
    .s-about {
        padding: 4rem 1.5rem;
    }

    .about>h1 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .about-content {
        min-height: 450px;
        padding: 3rem 2rem;
    }

    .about-content>p {
        padding: 2rem;
        font-size: 1.05rem;
        line-height: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .s-about {
        padding: 3rem 1rem;
    }

    .about>h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-content {
        min-height: 400px;
        padding: 2.5rem 1.5rem;
    }

    .about-content>p {
        padding: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6rem;
    }
}