    /* Circular Buttons */
    .btn-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Button Container */
    .btn-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Button Text */
    .btn-text {
        font-size: 14px;
        font-weight: bold;
        color: #333;
    }

    /* Fix for Help Text Alignment */
    .text-center .btn-text {
        margin-top: 5px;
        /* Adjust to match other buttons */
        line-height: 1;
    }

    /* Button Group Spacing */
    .btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Form Group */
    .form-group {
        margin-bottom: 20px;
    }

    .input-group {
        height: 50px;
    }

    .input-group-addon,
    .form-control {
        height: 50px;
        font-size: 16px;
    }

    /* Help Section */
    .help-section {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .help-question {
        background-color: #f4f4f4;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .help-question:hover {
        background-color: #e9ecef;
    }

    .help-answer {
        display: none;
        padding: 10px 15px;
        background-color: #fafafa;
        border-left: 3px solid #007bff;
        margin-bottom: 10px;
        border-radius: 3px;
    }

    .arrow {
        transition: transform 0.3s;
    }

    .arrow.down {
        transform: rotate(180deg);
    }

    .help-link {
        color: #007bff;
        text-decoration: none;
    }

    .help-link:hover {
        text-decoration: underline;
    }

    /* Remove default list styling */
    .help-answer ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .help-answer li {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

    /* ✅ Responsive Adjustments for Medium and Larger Screens */
    @media (min-width: 768px) {
        .btn-circle {
            width: 60px;
            /* Reduced size */
            height: 60px;
        }

        .btn-text {
            font-size: 12px;
            /* Smaller text */
        }

        .input-group {
            height: 40px;
            /* Smaller input height */
        }

        .input-group-addon,
        .form-control {
            height: 40px;
            font-size: 14px;
            /* Smaller font */
        }

        .help-question {
            padding: 8px 12px;
            /* Slightly reduced padding */
            font-size: 14px;
        }

        .help-answer {
            padding: 8px 12px;
            font-size: 14px;
        }
    }

    @media (min-width: 1024px) {
        .btn-circle {
            width: 50px;
            /* Further reduce for larger screens */
            height: 50px;
        }

        .btn-text {
            font-size: 12px;
        }

        .input-group {
            height: 35px;
        }

        .input-group-addon,
        .form-control {
            height: 35px;
            font-size: 13px;
        }

        .help-question {
            padding: 6px 10px;
            font-size: 13px;
        }

        .help-answer {
            padding: 6px 10px;
            font-size: 13px;
        }
    }