.section-pink {
    background: linear-gradient(
        135deg,
        #ede9fe 0%,  
        #f5f3ff 40%,  
        #ffffff 100%
    );
    color: #fdfdfd;

    position: relative;
    overflow: hidden;
}

.section-pink::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #c4b5fd 0%, transparent 80%);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.section-pink::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #fbcfe8 0%, transparent 80%);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%   { transform: translateY(0) translateX(0); }
    50%  { transform: translateY(-30px) translateX(20px); }
    100% { transform: translateY(0) translateX(0); }
}

.section-pink .container {
    position: relative;
    z-index: 1;
}

.section-gray {
    background: linear-gradient(135deg, #f8fafc 0%, #e6eef6 50%, #f8fafc 100%);
    color: #0f172a;
}

.underlined {
    position: relative;
    margin-right: 1rem;
}
.underlined:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 7px;
    width: 100%;
    border: solid 2px #cb1829;
    border-color: #cb1829 transparent transparent transparent;
    border-radius: 50%;
}