body {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: Arial, sans-serif;
}

/* .card-1{
    margin-top: 30px;
} */

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    margin: 0;
    padding: 0;
}

.logo_arrwo {
    position: fixed;
    bottom: 0;
    right: 55px;
    padding: 10px; 
  }

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.menu-buttons {
    display: flex;
}

.menu-button img {
    width: 55px;
    height: 55px;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.2s ease;
}

.menu-button img:hover {
    transform: scale(1.1);
}


.logo {
    padding: 0;
}

.logo img {
    width: 80px;
}

/* .content {
    display: flex;
} */

/* .title {
    margin-bottom: 50px;
}

.title img {
    max-width: 100%;
    height: auto;
}

.menu-container {
    max-width: 700px;
    width: 100%;
}

.menu-item {
    background: url('../images/accelerate_and_synergise/menu-01.png') no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px;
    color: white;
    margin-bottom: 20px;
    width: 100%;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s;
}

.menu-item:nth-child(2) {
    background-image: url('../images/accelerate_and_synergise/menu-02.png');
}

.menu-item:nth-child(3) {
    background-image: url('../images/accelerate_and_synergise/menu-03.png');
}

.menu-item:hover {
    transform: scale(1.02);
}

.footer-shape {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-shape img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr;
    }
} */