body {
    font-family: Arial, sans-serif;
    background-color: #0a0a23;
    color: #fff;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #1e1e3c;
}

.logo-title-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.company-name {
    font-size: 24px;
}

.language-select {
    display: flex;
    align-items: center;
}

.language-select span {
    margin-right: 10px;
}

.profile-section {
    display: flex;
    align-items: center;
    background-color: #292a48;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    font-size: 22px;
    margin: 0;
}

.profile-role {
    font-size: 18px;
    margin: 5px 0;
}

.view-profile-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.view-profile-btn:hover {
    background-color: #0056b3;
}

.services-section, .products-section {
    margin: 20px;
}

.services-title, .products-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.credit-score-banner {
    background-color: #004c99;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.banner-image {
    width: 80px;
    height: 55px;
    margin-right: 15px;
}

.banner-text {
    flex-grow: 1;
    color: #fff;
}

.credit-score-btn {
    background-color: #fff;
    color: #004c99;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.commission-button {
    background-color: #00FF80;
    color: black;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: #1e1e3c;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.product-image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.coming-soon-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-picture {
        margin-bottom: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-item {
        padding: 25px;
    }

    .product-image {
        width: 70px;
        height: 70px;
    }
}
