/* Main Content */
.ssites-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.ssites-container h1 {
    text-align: center;
    margin: 20px;
    color: #FFD700;
    font-size: 1.2rem;
}

.ssites-container p {
    text-align: center;
    margin: 20px auto;
    color: #e0e0e0;
    background-color: #1e1e1e;
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #FFD700;
    width: 40%;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
}

.service-card {
    display: flex;
    flex-wrap: nowrap;
    background-color: #1e1e1e;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    min-height: 100px;
    flex-direction: row;
}

.service-logo {
    width: auto;
    height: 100px;
    padding-right: 15px;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-name {
    font-size: 1rem;
    font-weight: bold;
    color: #FFD700;
}

.support-types {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.support-types li {
    display: flex;
    align-items: center;
    background: #FFD700;
    color: #121212;
    padding: 3px 5px;
    border-radius: 2px;
    font-size: 0.5em;
    font-weight: bold;
}

.support-types li i {
    margin-right: 5px;
}