/* Compliance Section Styles */
.compliance-section {
    margin-top: 100px;
    padding: 0px 120px 120px 120px;
    background-color: #f9f9f9;
    text-align: center;
}

.compliance-section h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #333;
}

.compliance-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.compliance-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensure the button stays at the bottom */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
    text-align: left;
}

.compliance-card h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
}

.compliance-card ul {
    flex-grow: 1;
    /* Allow the list to grow and take available space */
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    color: #666;
}

.compliance-card ul li .icon-green {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    margin-right: 10px;
}

.btn-full-width {
    display: block;
    width: 100%;
    padding: 10px;
    /* background-color: #ff6600; */
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    font-size: 1em;
}

.btn-full-width:hover {
    background-color: #e65c00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .compliance-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .compliance-card {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 0px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.detail-card {
    background: #fdefe8;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.detail-card h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
    text-align: left;
    color: #333;
}

.detail-card p {
    font-size: 1em;
    color: #666;
    text-align: left;
}