/* Section */
.compliance {
    background-color: #0f172a; /* slate-900 */
    color: #ffffff;
    height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Container */
.compliance-container {
    max-width: 70rem;
    /* ~max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero {
    position: relative;
    background-color: #0f172a;
    color: #fff;
    height: 40vh;
    display: flex;
    align-items: center;
}

.page-hero .container {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: left;
}

/* Title */
.compliance-title {
    font-size: 3rem; /* smaller than Tailwind 5xl */
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Text */
.compliance-text {
    font-size: 1.2rem; /* smaller than text-xl */
    line-height: 1.6;
    color: #cbd5e1; /* slate-400 */
    max-width: 70rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .compliance-title {
        font-size: 3rem; /* md:text-6xl → reduced */
    }
    .compliance-text {
        font-size: 1.125rem; /* ~18px */
    }
}

@media (min-width: 1024px) {
    .compliance-title {
        font-size: 3rem; /* larger screens */
    }
    .compliance-text {
        font-size: 1.21rem; /* ~20px */
    }
}

/* Section */
.standards {
    background-color: #ffffff;
    padding: 6rem 0; /* py-24 */
}

.standards-container {
    max-width: 58rem; /* ~max-w-5xl */
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid */
.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Item */
.standards-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f1f5f9; /* slate-100 */
}

.standards-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .standards-item {
        flex-direction: row;
        align-items: flex-start;
    }
    .standards-heading {
        width: 33%;
    }
    .standards-content {
        width: 67%;
    }
}

/* Heading */
.standards-heading h3 {
    font-size: 1.3rem; /* smaller than text-2xl */
    font-weight: bold;
    color: #0f172a; /* slate-900 */
}

/* Content */
.standards-content p {
    font-size: 1rem; /* smaller than text-lg */
    line-height: 1.7;
    color: #475569; /* slate-600 */
}

/* Commitment Box */
.commitment-box {
    margin-top: 5rem;
    padding: 3rem;
    background-color: #eff6ff; /* blue-50 */
    border: 1px solid #dbeafe; /* blue-100 */
    border-radius: 1.5rem;
    text-align: center;
}

.commitment-box h3 {
    font-size: 1rem; /* smaller than text-xl */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1e3a8a; /* blue-900 */
}

.commitment-box p {
    font-size: 0.9rem;
    color: rgba(30, 64, 175, 0.8); /* blue-800/80 */
}
