#content {
    padding-top: 15px;
}

#content-inner {
    flex-direction: column;
    gap: 20px;
}

#header {
    border-bottom: 1px solid var(--grey);
    padding-top: 0px;
    padding-bottom: 20px;
}

#header h3{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: "Lato";
    font-size: 18px;
    font-weight: normal;
    color: rgb(233, 61, 61);
    font-weight: 700;
}

#header h3 u {
    color: black;
}

#header-inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    box-sizing: border-box;
}

.button {
    font-family: "Inter";
    font-size: 15px;
    font-weight: 600;
}

.card-black {
    background-color: black;
    color: white;
    padding: 40px;
}

.button {
    background-color: var(--orange);
    border-radius: 25px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
    padding-right: 25px;
}

.button-link {
    color: black;
    text-decoration: none;
}

.button-link-thin {
    width: 100%;
}

.button-link-thin .button {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Inter";
    font-size: 15px;
    font-weight: 600;
}

.video-container {
    width: 565px;
    height: 316px;
}


#footer {
    padding-top: 60px;
    border-top: 1px solid var(--grey);
}

#main-h1 {
    font-size: 52px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

#main-heading{
    margin-bottom: 15px;
}

#main-heading h1{
    font-family: "Lato";
    font-weight: 800;
    margin-bottom: 15px;
}

#main-heading h2, .border-dotted{
    font-size: 23px;
    font-weight: 400;
    text-align: center;
}

.prose {
    max-width: 550px;
}

.prose p {
    text-align: center;
}

.border-dotted {
    border:2px dotted var(--blue);
    line-height: 30px;
    margin-top: 0px;
    font-family: "Inter";
    width: 85%;
    margin-bottom: 0;
}

.card-image {
    width: 50%;
    margin-bottom: 20px;
}

.card-grey-heading {
    margin-bottom: 20px;
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
}

.ps {
    width: 90%;
    text-align: center;
}

.jump-top {
    color: var(--blue);
    text-decoration: none;
}

.image-mosaic img {
    width: 110px;
}

.accordion {
    cursor: pointer;
    padding: 10px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.panel {
    display: none;
    padding: 10px;
    border-top: none;
    font-family: "Inter";
    font-size: 13px;
}
.arrow {
    font-size: 18px;
    transition: transform 0.2s;
}
.active .arrow {
    transform: rotate(180deg);
}
