body{
    font-family: Arial, sans-serif;
    background-color: #d5ecd3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-header {
    display: flex;
    align-items: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  margin: 20px 20px 20px 0;
  border-radius: 100px;
  object-fit: cover;
}

.title {
    text-align: left;
    margin-bottom: 20px;
    color: navy;
}

.divider {
  border: none;
  border-top: 2px solid #ccc;
  margin: 20px 0;
}

h2 {
    color: darkred;
}

h3 {
    color: darkgreen;
}

p {
    line-height: 1.6;
    color: darkslategray;
    text-align: justify;
}

.list-container {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.item {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 15px;
    margin-right: 20px;
}

#profile-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: justify
}

a {
    color: darkblue;
    text-decoration: none;
}

.experience-table {
    width: 100%;
    border-collapse: collapse;
}

.experience-table th, .experience-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.experience-table th {
    background-color: #bdbcbc;
}

.experience-table tr:nth-child(even) {
    background-color: #e3e2e2;
}

.experience-list {
    list-style-type: disc;
    padding-left: 20px;
}
.experience-list li {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    list-style-type: circle;
}

.education-table {
    width: 100%;
    border-collapse: collapse;
}

.education-table th, .education-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.education-table th {
    background-color: #bdbcbc;
}

.contact-table{
    width: 100%;
    border-collapse: collapse;
}

.contact-table td{
    padding: 8px;
    text-align: left;
}

.projects-list {
    list-style-type: disc;
    padding-left: 20px;
    padding-right: 20px;
}
.projects-list li {
    margin: 10px;
    list-style-type: none;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    #profile-container {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 20px auto;
    }

    .title {
        text-align: center;
    }

    .experience-table th, .experience-table td,
    .education-table th, .education-table td {
        padding: 5px;
        font-size: 14px;
    }

    .list-container {
        flex-wrap: wrap;
    }

    .item {
        margin-bottom: 10px;
        margin-right: 10px;
        font-size: 13px;
        padding: 8px 12px;
    }

    .skills-table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }

    .skills-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
    }

    .skills-table td {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    .skills-table h3 {
        margin: 10px 0 5px 0;
    }
}