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;

    position: relative;
}

.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%;

}

.page-title {
    font-size: 18px;
    font-weight: 600;
}

.back-button {
    text-decoration: none;
    font-size: 18px;
    color: black;
}


/* overlay behind menu */
.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    z-index: 999;
}

/* show overlay */
.menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* side menu */
.side-menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;

    background-color: #65E4D3;

    display: flex;
    flex-direction: column;
    padding-top: 80px; /* space for header */

    transform: translateX(-100%); /* hidden off screen */
    transition: transform 0.3s ease;

    z-index: 1000;
}

/* menu open */
.side-menu.show {
    transform: translateX(0);
}

/* links */
.side-menu a {
    padding: 15px 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.side-menu a:hover {
    background-color: #57cfc0;
}