/* Container */
.self-profile {
    background-color: #f9f9f9;
    /* light neutral background */
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px auto;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    max-width: 600px;
    /* limits width */
}

/* Main title */
.self-title {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 15px;
}

/* Section subtitles */
.self-subtitle {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraph text */
.self-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Lists */
.self-list {
    list-style-type: none;
    /* removes bullets */
    padding-left: 20px;
    margin-bottom: 10px;
}

.self-list li {
    margin-bottom: 6px;
    font-size: 16px;
    color: #555;
}