* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #E8E3D5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.menu-container {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    margin-bottom: 40px;
    text-align: center;
}

.logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Palm icon */
.palm-icon {
    margin-bottom: 50px;
}

.palm-icon img {
    width: 120px;
    height: auto;
}

/* Menu buttons */
.menu-buttons {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-button {
    display: block;
    padding: 18px 30px;
    background-color: #C9BFAD;
    color: #8B7355;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.menu-button:hover {
    background-color: #B8AE9C;
}

/* Footer */
footer {
    background-color: #4A6FA5;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer p {
    font-size: 13px;
    font-family: 'Neuton', serif;
    font-weight: 400;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .menu-container {
        padding: 30px 15px;
    }
    
    .logo img {
        max-width: 240px;
    }
    
    .palm-icon img {
        width: 100px;
    }
    
    .menu-buttons {
        max-width: 100%;
    }
    
    .menu-button {
        padding: 16px 20px;
        font-size: 13px;
    }
}
