#contact-section {
    font-family: Arial, sans-serif;
    margin: 40px auto;
    max-width: 600px;
}

#contact-section h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
}

#contact-section p {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form-container {
    width: 90%;
    margin: 0 auto;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-field {
    width: 100%;
    margin-bottom: 15px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: transparent;
}

.contact-field button {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.contact-field button:hover {
    background-color: #004494;
}

.privacy-note {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

.privacy-note a {
    color: #0056b3;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
}

.sidebar {
    width: 250px;
    background: #333;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 20px;
    text-align: center;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    display: block;
}


.main-content {
    margin-left: 250px;
    padding: 20px;
    width: 100%;
}

.profile-section,
.skills-section,
#resume-section {
    margin-bottom: 40px;
}

.skill-bars {
    margin-top: 20px;
}

.skill-bar {
    margin-bottom: 20px;
}

.skill-title {
    font-weight: bold;
}

.skill-progress {
    height: 20px;
    background-color: #0056b3;
    border-radius: 4px;
}

.internship-info {
    text-align: right;
    font-size: 12px;
    color: #777;
}
