* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f6fa;
    background-image: url(./image/favicon-32x32.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.content-top {
    width: 100%; 
    height: 200px;
    background-image: url(./image/background-pattern-desktop.svg);
}
.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(248, 237, 248);
    height: 428px;
}
.card {
    position: relative;
    width: 400px;
    height: 400px;
    background-color: white;
    overflow: hidden;
    transition: all .3s ease-in-out;
    transform: translateY(-25%);
    border-radius: 10px;
    padding: 25px 10px 10px 10px;
}
.content-heading {
    padding: 4px;
    font-weight: 700;
    font-size: 38px;
    color: rgb(31, 1, 31);
}
.star-icon {
    margin-right: 10px;
}
.accordion {
    margin-top: 30px;
}

.accordion-item {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    margin: 15px 0 0 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.item-header {
    display: flex;
    justify-content: space-between;
}
h4 {
    font-size: 14px;
    padding: 10px;
    color: rgb(62, 39, 62);
}
.accordion p {
    font-size: 11.5px;
    display: none;
    padding: 8px;
    line-height: 15px;
    color: rgb(127, 103, 127);
    width: 100%;
}
.accordion p.open {
    display: block;
}

@media (max-width: 400px) {
    .card {
        width: 270px;
        padding: 16px;
    }
    .content-top {
        background-image: url(./image/background-pattern-mobile.svg);
    }
    h4 {
        font-size: 12px;
    }
}
