.main-header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.header-left {
    display: flex;
    align-items: center;
}

.menu-icon {
    font-size: 50px;
    cursor: pointer;
    margin-right: 20px;
    padding-left: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.logo {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.header-right .login-button {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.tagline-section,
.future-text-section {
    display: none;
}

.info {
    margin-top: auto;
    text-align: left; /* Aligned to left for consistency with menu items */
    font-size: 16px; /* Adjusted base font size */
    color: #ffffff;
    padding-bottom: 40px;
    padding-left: 40px; /* Consistent padding with menu items */
    padding-right: 20px;
    line-height: 1.6; /* Slightly reduced line height */
}

.info p:hover {
    color: #b8b8b8;
}

.info p {
    margin-bottom: 8px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .menu-item {
        font-size: 22px;
    }
    .info {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .menu-item {
        font-size: 20px;
    }
    .info {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-item {
        font-size: 18px;
    }
    .info {
        font-size: 13px;
    }
    .sidebar {
        width: 250px; /* Slightly narrower on smaller screens */
        max-width: 90%; /* Allows it to take more space if needed */
    }
    .x-button {
        font-size: 25px;
        top: 15px;
        right: 15px;
    }
    .menu-items {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 220px; /* Even narrower on very small screens */
    }
    .menu-item {
        font-size: 16px;
    }
    .info {
        font-size: 12px;
    }
}