* {
    border: none !important;
}

body {
    background: linear-gradient(to right, #19569d, #2ee809);
    font-family: 'Arial', sans-serif;
    color: #394240;
    font-size: 16px;
}

#neumorphism {
    border-radius: 20px;
    /* box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.5); */
    padding: 30px;
}

h1 {
    font-family: "Arial Black", sans-serif;
    background: linear-gradient(to right, #7289da, #4e5d94);
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 3px rgba(232, 212, 212, 0.3);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    margin-bottom: 30px;
}

.accordion-button {
    color: #627294;
    background: linear-gradient(to right, #ffffff, #f3f3f3);
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.4), -8px -8px 16px rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 20px 50px;
    margin: 14px 0;
    transition: box-shadow 0.3s ease-in-out;
}

.accordion-button:hover {
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.4), -10px -10px 20px rgba(255, 255, 255, 0.6);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}




.accordion-button:active {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.6) inset, -8px -8px 16px rgba(255, 255, 255, 0.5) inset;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ffffff00;
    outline: 0;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.4), -8px -8px 16px rgba(255, 255, 255, 0.6);
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #ffffff;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.6) inset, -8px -8px 16px rgba(255, 255, 255, 0.5) inset;
}

.accordion-button:not(.collapsed)::after {
    background: none;
    content: "";
    height: 30px;
    width: 30px;
    transition: none;
    background-color: #f0f0f0;
    border-radius: 50%;
    box-shadow: inset 0px -8px 11px -4px rgba(109, 147, 176, 0.38);
}

.accordion-button::after {
    background: none;
    content: "";
    height: 30px;
    width: 30px;
    transition: none;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.5);
}

ul li,
p {
    color: rgb(14, 14, 138);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Customize the accordion header font and color */
.accordion-button {
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Customize the accordion header when expanded */
.accordion-button:focus {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    background-color: #f2f2f2;
    color: #007bff;
}

/* Customize the accordion body font and color */
.accordion-body {
    color: #333333;
    line-height: 1.5;
    padding: 1rem;
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-body p {
    font-size: 1rem;
}

/* Customize the accordion item background color */
.accordion-item {
    background-color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    section#neumorphism {
        padding: 30px !important;
    }

    h1 {
        font-size: 5vw;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .accordion-body {
        font-size: 1rem;
    }
}