* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.profile-card {
    background: #ffffff;
    width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header {
    background: #0d6efd;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.header p {
    font-size: 18px;
    opacity: 0.9;
}

.content {
    padding: 30px;
}

.content h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
    padding-bottom: 5px;
}

.content p {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.skills li {
    background: #e9f1ff;
    color: #0d6efd;
    padding: 8px 12px;
    margin: 6px;
    border-radius: 5px;
    font-size: 14px;
}

.experience {
    margin-top: 15px;
}

.experience h3 {
    color: #0d6efd;
    margin-bottom: 5px;
}

.experience span {
    font-size: 14px;
    color: #777;
}
