.advantages, .experience {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.advantages-image, .experience-image {
    width: 80%;
    margin-left: 2%;
}

.experience-image {
    margin-left: 11%;
}

.floating-action-button {
    display: block;
    margin: 25px auto;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4361ee, #3f37c9);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.floating-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
    background: linear-gradient(135deg, #3a56d4, #3a0ca3);
}

.floating-action-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.floating-action-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.floating-action-button:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}