.about {
    background-color: #002147;  /* Navy blue for about page */
    color: white;
}

/* Section Styling */
.experience-section,
.education-section {
    padding: 40px;
    background-color: #f9f9f9;
}


/* Company or University Info (shared between experience and education) */
.company-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.company-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 5px;
    object-fit: contain;
}

.company-details h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.company-details p {
    margin: 2px 0;
    color: #666;
    font-size: 14px;
}

/* Roles/Details Section (applies to both cards) */
.roles,
.education-roles {
    margin-left: 65px;
}

/* Role and Course Card Titles */
.role-card h4,
.education-role-card h4 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0047AB; /* Consistent color for section titles */
}

/* Descriptions for Roles and Courses */
.role-card p,
.education-role-description {
    color: #444;
    font-size: 14px;
}

.education-role-description {
    list-style-type: disc;
    margin: 0;
    margin-left: 15px;
    padding-left: 0;
}

.education-role-description li {
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 7px; /* Align bullets under 'Courses' */
}

/* General Role/Course Card Structure */
.role-card,
.education-role-card {
    margin-bottom: 20px;
    margin-left: 20px;

}
