.rti-support-widget {
    background-color: #ffcc00; /* Rösler Yellow */
    color: #333;
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: inherit;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rti-support-widget h4 {
    margin-top: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rti-support-widget p {
    font-size: 15px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 20px;
}

.rti-support-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rti-contact-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    gap: 15px; /* Space between Icon-Link and Text-Link */
}

.rti-contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: flex; /* Ensures link behaves well with flex/icon */
    align-items: center;
}

.rti-contact-item a:hover {
    text-decoration: underline;
}

.rti-support-icon {
    width: 36px;
    height: 36px;
    /* margin-right removed, handled by gap */
    fill: #000;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

