.mpgd-app-wrap {
    font-size: 20px;
    .mpgd-app-header {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        @media (min-width: 1024px) {
            flex-direction: row;
        }
        .mpgd-header-content {
            display: flex;
            flex-direction: column;
            justify-content: start;
            gap: 1rem;
            @media  (min-width: 1024px) {
                flex: 0 1 40rem;
            }
                .mpgd-header-title {
                    font-weight: 700;
                }
                .mpgd-links {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 0.75rem;
                }
        }
    }
    .mpgd-cards {
        .mpgd-cards-header {
            text-align: center;
            margin-bottom: 2rem;
            small {
                font-size: 1rem;
            }
        }
        .mpgd-cards-wrap {
            display: grid;
            gap: 1rem;
            @media (min-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
            }
            @media (min-width: 1024px) {
                grid-template-columns: repeat(3, 1fr);
            }
            .mpgd-card {
                padding: 1.5rem 0.75rem;
                box-shadow: 0 0 1px #002c5f;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                justify-content: center;
                position: relative;
                cursor: pointer;
                &:hover .card-link {
                    opacity: 0.5;
                }
                .card-content {
                    height: 100%;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }
            }
        }
    }
    .modal {
        opacity: 0;
        pointer-events: none;
        position: fixed;
        display: flex;
        height: 100dvh;
        width: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,0.5);
        transition: opacity 0.3s ease;
        &.active-modal {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-content {
            background-color: #fff;
            padding: 1rem;
            display: grid;
            gap: 1rem;
            max-width: 45rem;
            .modal-title {
                text-align: center;
            }
        }
        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 0.75rem;

        }
    }
    .mpgd-box {
        background-color: #002c5f;
        color: #fff;
        padding: 1rem;
        margin-block: 2rem;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        text-align: center;
        @media (min-width: 1024px) {
            flex-direction: row;
            align-items: center;
        }
        .mpgd-box-col {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            flex: 0 1 50%;
        }
        .mpgd-box-content {
            display: flex;
            gap: 0.75rem;
            background-color: #fff;
            color: #000;
            padding: 0.75rem;
            text-align: left;
        }
    }
    .mpgd-faq {
        .collapse-section {
            display: flex;
            flex-direction: column;
        }
        .btn-link {
            width: 100%;
        }
        .accordion-body {
            border: none;
        .accordion-title {
            margin-block: 0.5rem;
            padding: 0.5rem;
        }
        }
    }
}