body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #faf5f7;  
    color: #2b1a1a;  
}

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

.block-line {
    display: block;      
    margin-bottom: 1.5em; 
    line-height: 1.6;     
}

.sidebar {
    width: 250px;
    background: #6d1b2e;
    padding: 20px;
    text-align: center;
    border-right: 2px solid #4a0f1f;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    color: #f8eaea;  
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 8px;  
    object-fit: cover;
    border: 3px solid #f8eaea; 
}

.sidebar h2 {
    margin: 5px 0;
    font-size: 1.4em;
    color: #f8eaea;  
}

.social-links {
    margin-top: 20px;
}

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

.social-icons a {
    font-size: 1.4em;  
    color: #f0c0c0; 
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffccd5;  
}

.content {
    flex: 1;
    padding: 40px;
    margin-left: 300px; 
    max-width: 800px;
    line-height: 1.6;
}

.content h1 {
    color: #4a0f1f; 
    margin-bottom: 20px;
}

.content h2 {
    color: #6d1b2e; 
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #b85c72; 
    padding-bottom: 5px;
}

.content p {
    margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 2px solid #4a0f1f;
    }
    
    .content {
        margin-left: 0;
        padding: 20px;
    }
}
