/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    text-align: justify;
}

header {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-section h2, .interests-section h2 {
    color: #343a40;
    border-bottom: 2px solid #343a40;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.interests-section ul {
    list-style-type: none;
    padding: 0;
}

.interests-section li {
    margin-bottom: 5px;
}

/* Special styling for interests section */
.interests-section {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.interests-section h2 {
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}
