h2 {
    font-size: 52px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}
      


.bg1 {
    background: url(https://511636.fs1.hubspotusercontent-na1.net/hubfs/511636/bg1.png);
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg1 h2 {
    font-size: 52px;
}

.button button {
    background-color: #FF8B00;
    color: #fff;
    border: none;
    padding: 15px 20px;
    margin-right: 20px;
    font-weight: bold;
    border-radius: 15px;
    font-size: 20px;

}

.compliance-card {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}



.icon-box {
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.compliance-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 20px;
}

.compliance-text {
    color: #888;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.shadow {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 10px, 0.2));
    border-radius: 20px;
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

}

.faq-section {
    background: #FFEEDA;
    color: #000;

}

.faq-title {
    color: #000;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.faq-underline {
    width: 70px;
    height: 6px;
    background: var(--accent);
    border-radius: 999px;
    margin: 10px auto 24px;
}

/* Accordion base */
.faq-accordion {

    margin: 0 auto;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #000;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.faq-accordion .accordion-button {
    background: transparent;
    border: 0;
    box-shadow: none !important;
    padding: 20px 0;
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 0 18px 0;
    color: #000;
    line-height: 1.8;
    max-width: 820px;
}

/* Chevron right/down (pure CSS) */
.faq-accordion .accordion-button::after {
    content: "";
    background: none;
    width: 14px;
    height: 14px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    /* right */
    opacity: 0.85;
    margin-left: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(225deg);
    /* up */
}

.bg2 {
    background: url(../images/bg2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.buttons button {
    background-color: #fff;
    color: #000;
}

.buttons .button2 button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    h2 {
        font-size: 36px;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .p-5,
    .pt-5,
    .pb-5,
    .py-5 {
        padding: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}