@import url("https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Fira+Code:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --font-family: "Poppins", sans-serif;
    --primary-color: #07a0b7;
    --border-radius: 10px;
    --header: 16px;
    --header-sub: 14px;
    --text-size: 12px;
    --background-color: #fff;
}

.custom-card {
    border-radius: 12px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, .3);
    width: 100%;
    max-width: 800px;
    z-index: 8;
}

.custom-card-header {
    background: var(--primary-color);
    color: var(--background-color);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    gap: 4px;

}

.custom-card-header h5 {
    font-weight: bold;
    margin-bottom: 0;
    font-size: var(--header);
}

.custom-card-header .sub {
    font-size: var(--header-sub);
    font-weight: 500;
    display: flex;
    margin-top: 4px;
    flex-direction: column-reverse;
    justify-content: center;
    line-height: normal;
}

.custom-card-header .sub span {
    color: var(--background-color);
    opacity: 0.9;
}

.custom-card-body {
    padding: 24px 24px 12px 24px;
    font-family: var(--font-family);
}

.custom-btn-apply {
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    border-radius: 6px;
    font-weight: 500;
    border: none;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 12px;
    transition: background 0.2s;
    padding: 8px 0px;
    font-family: var(--font-family);
    font-size: var(--header-sub);
}

.custom-btn-apply:hover {
    background: var(--primary-color);
}

.custom-readmore {
    background: var(--background-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    width: 100%;
    padding: 12px 0 8px 0;
    font-size: var(--text-size);
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    font-family: var(--font-family);
}

.custom-readmore:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-collapse {
    overflow: hidden;
}

.desc-title {
    font-weight: bold;
    font-size: var(--header);
    margin-bottom: 4px;
}

.desc-qual {
    font-weight: bold;
    font-size: 1.05rem;
    margin-top: 18px;
    margin-bottom: 4px;
}

.desc-list {
    font-size: var(--header-sub);
    margin-bottom: 0;
}

.text-qual {
    margin-top: -7px;
}
