body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    padding: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.similar-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.app {
    display: flex;
    align-items: center;
    width: 48%;
}

.app img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-name {
    font-size: 16px;
    font-weight: bold;
}

.app-developer {
    font-size: 14px;
    color: #666;
}

.app-rating {
    font-size: 14px;
    color: #666;
}

.app-rating i {
    color: #f4c542;
}

.flag {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.flag i {
    margin-right: 5px;
}

.footer {
    margin-top: 40px;
    font-size: 16px;
    color: #666;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 5px;
}