/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
}

.main-container {
    max-width: 960px;
    margin: auto;
    /* padding: 1rem; */
    /* background-color: rgba(27, 56, 68, 0.85); */
}

.logo {
    /* max-width: 200px; */
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 400px;
}

.logo-bg {
    background-color: #1b3844;
}

.accordion {
    z-index: 99;
}

.accordion h3, .accordion h4 {
    color: #1b3844;
    font-size: 20px;
    font-weight: bold;
}

/* Accordion background and border */
.accordion-item {
    background-color: #ffffff;
    color: White;
    border: 1px solid #1b3844;
}

/* Accordion body text */
.accordion-body {
    color: #1b3844;
}

/* Accordion button (closed state) */
.accordion-button {
    /* background-color: #ffffff; */
    color: #1b3844;
    font-weight: bold;
    /* font-size: 20px; */
    background-color: #eee;
    
    letter-spacing: 1px;
    font-size: 24px;
    padding: 10px 17px;
}

/* Accordion button (open/active state) */
.accordion-button:not(.collapsed) {
    background-color: #C8102E;
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.accordion-button:hover,
.accordion-button:focus {
    background-color: #514d4d !important;
    color: #ffffff;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.accordion-body a {
    color: #C8102E;
    text-decoration: underline;
    word-break: break-word;
  overflow-wrap: break-word;
}

.accordion-body a:hover {
    color: #1b3844;
}

.accordion-body .text-section a.btn {
    background-color: #C8102E;
    color: white;
    text-decoration: none;
}

.accordion-body .text-section a.btn:hover {
    background-color: #1b3844;
    color: white;
    text-decoration: none;
}


.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.download-icon {
    margin-left: 10px;
    color: #1b3844;
}