/*
 * Company palette
 * --primary:  #F1FF5C
 * --dark:     #22272D
 * --mid:      #AAB0B8
 * --light:    #F4FAFF
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #F4FAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 24px;
}

.container {
    width: 100%;
    max-width: 660px;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.lang-btn {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    cursor: pointer;
    color: #6b7280;
    font-family: inherit;
}

.lang-btn.active {
    background: #22272D;
    color: #fff;
    border-color: #22272D;
}

/* Page title */
.page-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: #22272D;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

/* Vertical list */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each row */
.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1.5px solid #e4e9ef;
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: 0 1px 6px rgba(34, 39, 45, 0.05);
}

.service-item:hover {
    border-color: #F1FF5C;
    box-shadow: 0 4px 18px rgba(34, 39, 45, 0.1);
}

/* Icon box */
.item-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #F1FF5C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text block */
.item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-name {
    font-size: 0.9rem;
    font-weight: 680;
    color: #22272D;
    letter-spacing: 0.5px;
}

.item-sub {
    font-size: 0.8rem;
    color: #AAB0B8;
    font-weight: 400;
}

/* Yellow pill badge */
.item-badge {
    background: #F1FF5C;
    color: #22272D;
    font-size: 0.7rem;
    font-weight: 680;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.service-item:hover .item-badge {
    background: #22272D;
    color: #ffffff;
}

/* Footer */
.footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-powered {
    font-size: 0.75rem;
    color: #AAB0B8;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-top: -10px;
}
