/* ===============================
   AUTHORITY SECTION
================================ */

.authority-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}


/* Left Content */

.section-title {
    font-size: 34px;
    margin-bottom: 20px;
}

.section-text {
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.6;
}


/* Right Stats */

.authority-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    padding: 25px 30px;
    background: #ffffff;
    border-left: 4px solid var(--blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: #475569;
}