body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #b0d7de;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    background: rgb(227, 207, 228);
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-top: 20px;      /* reduced from 40px */
    margin-bottom: 20px;   /* reduced from 40px */
}

.header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #992626;
    padding-bottom: 15px;
}

.profile-container {
    flex: 1;
}

.profile-img {
    width: 120px;
    height: 150px;
    border-radius: 25%;
    object-fit: contain;
    border: 4px solid #0d2135;
}

.intro {
    flex: 2;
}

.intro h1 {
    margin: 0;
    font-size: 28px;
}

.tagline {
    color: #0b3996;
    font-weight: bold;
}

.contact {
    font-size: 14px;
    color: #000000;
}

.section {
    margin-top: 20px;
}

.section h2 {
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
    display: inline-block;
}

.skills span {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
}

ul {
    padding-left: 20px;
}