body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('../images/driving_net_zero/background 4.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.menu-button img {
    width: 32px;
    height: 32px;
}

.logo {
    text-align: right;
    padding: 20px;
}

.logo img {
    width: 80px;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5%;
}

.title {
    margin-bottom: 50px;
}

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

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

.menu-item {
    background: url('../images/driving_net_zero/menu1.png') no-repeat;
    background-size: 100% 100%;
    padding: 10px 40px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s;
}

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

.menu-item:nth-child(3) {
    background-image: url('../images/driving_net_zero/menu3.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;
    }
}