.img-header-container {
    max-width: 600px;
    max-width: 800px;
    object-fit: contain;
}

/*--------------------------*/

/* Container styles */
.container .container-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Main headers */
.container-content h1,
.container-content h2 {
    text-align: center;
    color: #012970;
    font-weight: bold;
}

.container-content .h1-header-1 {
    margin-bottom: 30px;
}

.container-content .h1-header-2 {
    margin-bottom: 40px;
}

/* Introduction paragraph */
.container-content p {
    line-height: 1.6;
    color: #444444;
}

/* Accordion */
.accordion .accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion .accordion-header {
    background-color: #f7f7f7;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}

.accordion .accordion-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    color: #012970;
    text-transform: uppercase;
}

.accordion .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion .accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-item .accordion-button[aria-expanded=true] {
    color: #0275D8;
}

.accordion .accordion-collapse {
    border-top: 1px solid #ddd;
}

.accordion .accordion-body {
    padding: 15px;
    background-color: #fff;
}

.accordion .list-unstyled {
    padding-left: 20px;
    margin: 0;
}

.accordion .list-item {
    margin-bottom: 15px;
}

.accordion .list-item strong {
    display: block;
    color: #222;
}

.accordion .list-item p {
    margin: 5px 0;
    color: #777;
}

.accordion .list-item em {
    display: block;
    font-style: normal;
    color: #444;
    margin: 5px 0;
}

/*--------------------------*/

.img-caption {
    font-size: 0.9rem !important;
    /* Adjust the font size to be small but readable */
    text-align: center;
    margin-top: 5px;
    color: #555;
    /* Adjust the color for better readability */
}

.indented-paragraph {
    text-indent: 2em;
    text-align: justify;
    text-justify: inter-word;
}

/*-------------------------*/

/* List styling */
.styled-list {
    list-style-type: none;
    /* Removes the default bullet points */
    padding: 0;
    /* Removes default padding */
}

.styled-list li {
    background-color: #ffffff;
    /* White background for list items */
    color: #012970;
    /* Dark text color */
    margin-bottom: 10px;
    /* Space between list items */
    padding: 15px;
    /* Space inside each list item */
    border: 1px solid #ddd;
    /* Light grey border */
    border-radius: 5px;
    /* Rounded corners */
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Smooth transition for hover effect */
}

.styled-list li:hover {
    background-color: #0275D8;
    color: #FFFFFF;
}

.section__works--three-content-gap-1 {
    margin-top: 40px;
}

.section__works--three-content-gap-2 {
    margin-top: 45px;
}



