body {
    background: #e3edf7;
}

.accordion {
    margin: 60px auto;
}

.accordion li {
    list-style: none;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15);
}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before {
    content: "\02C5";
    margin-right: 60px;
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    right: 0px;
    color: blue;
    transition: transform 0.2s ease-in-out;
}

label:hover::before {
    color: orangered;
}

input[type="radio"] {
    display: none;
}

.accordion .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.learn-more {
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.learn-more:hover {
    color: orangered;
    text-decoration: none;
    text-shadow: 0 0 8px orangered;
}

.arrow::after {
    content: " →";
    display: inline;
    color: #fff;
    background: orangered;
    border-radius: 50%;
    padding: 1px 2px;
    margin: 2px;
}

.accordion input[type="radio"]:checked + label::before {
    transform: rotate(180deg);
    color: orangered;
}

.accordion input[type="radio"]:checked + label + .content{
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion-img {
    display: none;
    margin: 60px auto;
    border-radius: 2%;
    max-height: 90%;
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #dfdede;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: orangered;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
