body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1A1A2E;
    color: #EAEAEA;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}
header {
    background-color: #0F3460;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
h1 {
    color: #E94560;
    margin-bottom: 0.2rem;
}
a {
    color: #E94560;
    text-decoration: none;
}
  a:hover {
    text-decoration: underline;
}
h2 {
    border-bottom: 2px solid #E94560;
    padding-bottom: 0.5rem;
}
.cert-card {
    background-color: #0F3460;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}
.cert-card:hover {
    transform: scale(1.03);
}
.cert-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.cert-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #E94560;
}
.cert-date {
    font-size: 0.9rem;
    color: #EAEAEA;
    margin-bottom: 0.5rem;
}
.cert-skills {
    text-align: left;
    margin-top: 1rem;
}
.cert-skills ul {
    padding-left: 1.2rem;
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #0F3460;
    color: #EAEAEA;
}