/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    display: flex;
    background: linear-gradient(31deg, #ffa17f 0%, #f35b10 100%);
    overflow: hidden;
}

/* Layout */
.left-panel {
    width: 50%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow-y: auto;
}

.right-panel {
    width: 50%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

/* Content Container */
.content-container {
    flex: 1;
    padding: 50px;
    overflow: hidden;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    body {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .left-panel {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    
    .right-panel {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 40px 30px 30px;
    }
}
