body {
    font-family: Arial;
    margin: 0;
    background: linear-gradient(to right, #74ebd5, #ACB6E5);
}

.container {
    width: 70%;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
}

h1 {
    margin: 0;
    color: #2c3e50;
}

h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    color: #333;
}

.section {
    margin-top: 20px;
}

.skills span {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 20px;
}

.card {
    background: #f9f9f9;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.03);
    background: #e3f2fd;
}

a {
    text-decoration: none;
    color: #3498db;
}