/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #e3f2fd, #fce4ec);
}

/* Layout */
.container {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sidebar */
.sidebar {
    width: 30%;
    background: #1e272e;
    color: white;
    padding: 25px;
}

.profile-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #00cec9;
    display: block;
    margin: auto;
}

.sidebar h1 {
    text-align: center;
    margin: 10px 0;
}

.role {
    text-align: center;
    color: #00cec9;
    margin-bottom: 20px;
}

.section {
    margin-top: 20px;
}

.section h3 {
    border-bottom: 2px solid #00cec9;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.section ul {
    list-style: none;
}

.section li {
    background: #2f3640;
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    width: 70%;
    padding: 30px;
    background: white;
}

.main-content h2 {
    color: #0984e3;
    margin-bottom: 10px;
    border-left: 5px solid #0984e3;
    padding-left: 10px;
}

section {
    margin-bottom: 25px;
}

/* Cards */
.card {
    background: #c0caf1;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Lists */
.main-content ul {
    margin-left: 20px;
}

.main-content li {
    margin-bottom: 5px;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}