.qrise-hero-section {
    display: flex;
    gap: 10px 0px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 200px 15% 50px 15%;
    backdrop-filter: blur(1px);
    min-height: 100vh;
}

.qrise-hero-title {
    font-size: 56px;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

.qrise-rotating-titles {
    height: 40px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    
}

.qrise-title-item {
    font-size: 56px;
    line-height: 70px;
    font-weight: 600;    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #4b83f2, #9c27b0, #e91e63);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.qrise-hero-description {
    max-width: 90%;
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 0 10px;
}

.qrise-cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff5733, #ff2e63);
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qrise-cta-button:hover {
    transform: translateY(-2px);
}

.qrise-arrow {
    transition: transform 0.3s ease;
}

.qrise-cta-button:hover .qrise-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .qrise-hero-section {
        padding: 60px 30px 50px 30px;
    }

    .qrise-hero-title {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    .qrise-rotating-titles {
        margin-bottom: 100px;
    }

    .qrise-title-item {
        font-size: 36px;
        line-height: 50px;
    }
}
