* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.header {
    background-color: #3590d2;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.header h1 {
    margin: 0;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.sidebar {
    flex: 1 1 300px;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

.sidebar section {
    margin-bottom: 30px;
}

.sidebar h2 {
    font-size: 1.5em;
    color: #3590d2;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.experience-skills {
    flex: 2 0 600px;
}

.contact-info ul, .education ul, .languages ul, .interests ul {
    list-style: none;
}
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
}

.contact-info li ion-icon, .interests li ion-icon {
    margin-right: 10px;
    color: #3590d2;
    font-size: 1.2em;
}

.education ul li {
    margin-bottom: 20px;
}

.education h3 {
    color: #3590d2;
    margin-bottom: 5px;
}

.education p {
    font-weight: 500;
    margin-bottom: 3px;
}

.education span {
    color: #666;
    font-size: 0.9em;
}

.languages ul li {
    margin-bottom: 15px;
}

.languages .progress {
    width: 100%;
    background-color: #e3e3e3;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.languages .progress-bar {
    height: 100%;
    background-color: #3590d2;
}

.interests ul {
    display: flex;
    flex-wrap: wrap;
}

.interests li {
    width: 50%;
    margin-bottom: 10px;
}

.experience-skills {
    flex: 3 1 600px;
    padding: 20px;
}

.experience,
.skills {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.experience h2,
.skills h2 {
    font-size: 1.5em;
    color: #3590d2;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.job {
    margin-bottom: 20px;
}

.job h3,
.skills h3 {
    color: #3590d2;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.job h4 {
    margin: 5px 0;
    font-weight: normal;
}

.job ul,
.skills ul {
    list-style: none;
    padding: 0;
}

.job li,
.skills li {
    margin: 5px 0;
}

.job span {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.skills span {
    color: #666;
    font-size: 0.9em;
}
.skills p {

    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .interests ul {
        flex-direction: column;
    }

    .interests li {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .profile-info h1 {
        font-size: 1.5em;
    }

    .profile-info p {
        font-size: 1em;
    }

    .sidebar,
    .experience-skills {
        padding: 15px;
    }

    .job h3 {
        font-size: 1em;
    }

    .job h4 {
        font-size: 0.95em;
    }
}