/* Basic styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 30px;
}

.header-text {
    flex-grow: 1;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 600;
    color: #333;
}

header p {
    font-size: 1.1em;
    color: #666;
    margin-top: 5px;
}

/* Main content */
main {
    display: flex;
    gap: 30px;
}

.column {
    flex: 1;
}

/* Section Styling */
section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Education */
.education-item {
    margin-bottom: 20px;
}

.education-item p {
    margin: 0;
}

.education-item strong {
    font-size: 1.1em;
}

/* Lists */
ul,
ol {
    padding-left: 20px;
    margin-bottom: 0;
}

ul li,
ol li {
    margin-bottom: 10px;
}

/* Interests */
.interests p {
    margin-bottom: 10px;
}

/* Responsivness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        margin-right: 0;
        margin-bottom: 20px;
    }

    main {
        flex-direction: column;
    }
}