body {
    background-color: rgb(162, 162, 162);
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

.phone-frame {
    width: 390px;
    height: 844px;
    border: 1px solid #ccc;
    margin: 50px auto;
    padding: 0px;
    background-color: white;
    overflow-y: auto;
}

.header-bar {
    background-color: #65E4D3;
    padding: 20px 30px;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-icon {
    width: auto;
    height: auto;
    
}

.flightaid-logo {
    width: auto;
    height: auto;

}

.main-title {
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;

}

.service-card {
    background-color:#65E4D3;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

}

.service-card img {
    width: 100%;
    max-width: 250px;
    border-radius:8px;

}

.service-card button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;

}