.home-container {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    min-height: 100vh;
}

.home-container .left-section {
    flex: 1;
    background-color: #ff7b5f;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.home-container .right-section {
    flex: 1;
    background-color: #003B4A;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.home-container .profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
}

.home-container .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
}

.home-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.home-container .job-title {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-align: center;
}

.home-container .menu-item {
    width: 100%;
    max-width: 400px;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.home-container .menu-item:hover {
    color: #FF5733;
}

@media (max-width: 768px) {
    .home-container {
        flex-direction: column;
    }
    
    .home-container .left-section, .right-section {
        flex: none;
        width: 100%;
        padding: 2rem 1rem;
    }
}