﻿.compliance-section {
    padding: 80px 0;
}

.section-tag {
    color: #1565ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
}

.compliance-title {
    font-size: 35px;
    font-weight: 800;
    color: #071d49;
    line-height: 1.1;
    margin: 20px 0;
}

    .compliance-title span {
        color: #1565ff;
    }

.compliance-description {
    font-size: 20px;
    color: #4f5b6b;
    line-height: 1.5;
}

.compliance-feature {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

    .compliance-feature:last-child {
        border-right: none;
    }

    .compliance-feature i {
        font-size: 35px;
        color: #1565ff;
    }

    .compliance-feature h5 {
        margin-top: 10px;
        font-weight: 700;
    }

.frameworks-container {
    margin-top: 60px;
    background: #f8fafc;
    border: 1px solid #e7ebf3;
    border-radius: 18px;
    padding: 35px;
}

.framework-title {
    color: #1565ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.framework-title2 {
    color: #5f6673;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}


.framework-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

    .framework-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .framework-card.available {
        border: 2px solid #1565ff;
    }

    .framework-card.upcoming {
        border: 1px solid #d8dde7;
    }

.framework-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.framework-icon {
    font-size: 34px;
    color: #1565ff;
}

.framework-card h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #071d49;
}

.framework-card p {
    flex-grow: 1;
    color: #5f6673;
    font-size: 15px;
    line-height: 1.7;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-top: auto;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.available-status {
    background: #e9f1ff;
    color: #1565ff;
}

.upcoming-status {
    background: #f3f4f6;
    color: #6b7280;
}

.compliance-footer {
    margin-top: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 25px;
}


.footer-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
    .footer-item i {
        font-size: 38px;
        color: #1565ff;
    }

.footer-icon {
    width: 70px;
    height: 70px;
    background: #0a3d91;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .footer-icon i {
        color: #fff;
        font-size: 34px;
    }

.footer-text h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0d2147;
    line-height: 1.2;
}

.footer-text p {
    margin: 0;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1565ff;
    line-height: 1.2;
}

@media (max-width: 768px) {

    .compliance-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-top: 30px;
    }

    .footer-item {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .footer-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

        .footer-icon i {
            font-size: 26px;
        }

        .footer-icon svg {
            width: 30px;
            height: 30px;
        }

    .footer-text h5 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .footer-text p {
        font-size: 15px;
        margin: 0;
    }
}

@media (max-width: 480px) {

    .compliance-footer {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-top: 25px;
        border-radius: 12px;
    }

    .footer-item {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .footer-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

        .footer-icon i {
            font-size: 22px;
        }

        .footer-icon svg {
            width: 24px;
            height: 24px;
        }

    .footer-text h5 {
        font-size: 13px;
        margin: 0 0 2px 0;
        line-height: 1.2;
    }

    .footer-text p {
        font-size: 13px;
        margin: 0;
        line-height: 1.2;
    }
}