.qrise-options-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.qrise-options-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.qrise-options-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.qrise-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.qrise-option-card {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qrise-option-card:hover {
    border-color: #6666FF;
    transform: translateY(-2px);
}

.qrise-option-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.qrise-option-card h4 {
    font-size: 20px;
    margin-bottom: 1rem;
}

.qrise-option-card p {
    color: #666;
    margin-bottom: 1rem;
}

.qrise-option-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6666FF;
    font-weight: 500;
}

.qrise-option-cta svg {
    transition: transform 0.3s ease;
}

.qrise-option-card:hover .qrise-option-cta svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .qrise-options-title {
        font-size: 36px;
    }

    .qrise-options-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 20px;
        gap: 1rem;
    }

    .qrise-option-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .qrise-options-section {
        padding: 2rem 0.5rem;
    }

    .qrise-options-title {
        font-size: 24px;
        padding: 0 1rem;
    }

    .qrise-options-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .qrise-options-grid {
        gap: 0.75rem;
        margin: 20px;
    }

    .qrise-option-card {
        padding: 1rem;
    }

    .qrise-option-icon {
        width: 32px;
        height: 32px;
    }

    .qrise-option-card h4 {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    .qrise-option-cta {
        font-size: 14px;
    }

    .qrise-option-cta svg {
        width: 16px;
        height: 16px;
    }
}