body {
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: rgba(250, 239, 199, 0.25) !important;
}
.faq-page {
    overflow-y: scroll;
}
.hero-section {
    padding: 4rem 0;
}
.rel1-section {
    padding: 3rem 0;
}
.rel2-section {
    padding: 3rem 0;
}
.intro-section {
    padding: 3rem 0;
}
.section-divider {
    margin: 3rem 0;
    border-top: 3px solid #707070;
}
.divider {
    height: 30px;
    width: 100%;
    background-image: url('/images/serge.svg');
    background-repeat: repeat-x;
    background-position: center;
}
.feature-icon {
    font-size: 3rem;
    color: #EEA377;
}

.button-hero {
    width: 100%;
    max-width: 500px;
    background-color: #64BDC0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1rem 1.5rem; /* py-3 px-6 */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.button-hero:hover {
    background-color: #70C36C;
}
.button-buy {
    width: 100%;
    max-width: 400px;
    background-color: #EEA377;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1rem 1.5rem; /* py-3 px-6 */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.button-buy:hover {
    background-color: #70C36C; /* Blue-600 */
}
.button-nav {
    width: 100%;
    max-width: 200px;
    background-color: #EEA377;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: .5rem .5rem; /* py-3 px-6 */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.button-nav:hover {
    background-color: #70C36C; /* Blue-600 */
}
main {
    padding-top: 0;
}

.animate-hide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.animate-show {
    opacity: 1;
}

