h1,
h2,
h3 {
    color: #2c3e50;
}

h2.text-center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    text-align: center;
}

.timeline {
    border-left: 3px solid #007BFF;
    padding-left: 20px;
    margin-left: 10px;
}

.timeline p {
    margin: 0;
    padding: 10px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.image-holder {
    text-align: center;
    margin: 20px 0;
}

.image-holder img {
    max-width: 100%;
    height: auto;
}

.team-photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.team-photo img {
    border-radius: 50%;
    margin: 10px;
    width: 150px;
    height: 150px;
}

.cta {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.cta a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.btn-primary {
    background-color: #007BFF;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.nav-tabs .nav-link.active {
    background-color: #007BFF;
    color: white;
    border-color: #007BFF;
}

.nav-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: -1px;
    color: gray;
    /* Change the color of the tab font to gray */
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.form-group label {
    font-weight: bold;
}

.form-control {
    margin-bottom: 10px;
}

.btn-primary {
    margin-top: 10px;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.team-container-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.team-photo {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}


.member-info {
    text-align: center;
    /* Center text within each member's info */
}



.member-info h4 {
    margin: 0;
    font-size: 1.2em;
}

.member-info p {
    margin: 5px 0 0;
    color: gray;
}



.chart-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box {
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 220px;
    background-color: #f8f9fa;
    text-align: center;
}

.box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

.title {
    font-size: 14px;
    color: #555;
}

.level {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.sublevel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 10px 0;
}

.department {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

/* Responsive design adjustments */
@media (max-width: 768px) {

    .level,
    .sublevel,
    .department {
        flex-direction: column;
        align-items: center;
    }

    .sublevel {
        grid-template-columns: repeat(2, 1fr);
    }

    .box {
        width: 100%;
        margin: 5px 0;
    }
}