* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #2c3e50;
    font-size: 14px;
}

.container {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar {
    width: 300px;
    padding: 40px 30px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid white;
}

.sidebar h1 {
    font-size: 1.6em;
    margin-bottom: 8px;
    font-weight: 600;
}

.sidebar .title {
    font-size: 0.9em;
    color: #bdc3c7;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.sidebar .info {
    margin-bottom: 30px;
    text-align: left;
}

.sidebar .info p {
    font-size: 0.85em;
    margin-bottom: 8px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
}

.sidebar .info p i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: #3498db;
}

.contact-links {
    list-style: none;
    text-align: left;
}

.contact-links li {
    margin-bottom: 12px;
}

.contact-links a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.85em;
    transition: color 0.2s ease;
}

.contact-links a:hover {
    color: #3498db;
}

.contact-links a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.content {
    flex: 1;
    padding: 40px;
}

.content section {
    margin-bottom: 35px;
}

.content h2 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.content ul {
    list-style: none;
}

.content ul li {
    margin-bottom: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.content ul li:last-child {
    border-bottom: none;
}

.content ul li strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 20px;
    }
    
    .sidebar {
        width: 100%;
        padding: 30px 20px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .sidebar h1 {
        font-size: 1.4em;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .content h2 {
        font-size: 1.2em;
    }
    
    .content section {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
    }
    
    .sidebar {
        padding: 20px 15px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content section {
        margin-bottom: 20px;
    }
    
    .sidebar h1 {
        font-size: 1.3em;
    }
    
    .content h2 {
        font-size: 1.1em;
    }
}
