:root {
	--primary-color: #00AA9B;
	--dark-navy: #172333;
	--light-bg: #f8f9fa;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--light-bg);
	color: var(--dark-navy);
	padding-top: 80px;

}


/* ===== TITLE ===== */
.page-title-section {
	text-align: center;
	padding: 120px 0 120px;
	background: linear-gradient(135deg,
			rgba(0, 162, 214, 0.85),
			rgba(52, 204, 103, 0.85));
	color: white;
}

.title-tag {
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--primary-color);
}

.title-main {
	font-weight: 800;
	margin-top: 10px;
}

.title-desc {
	max-width: 650px;
	margin: 15px auto 0;
	color: #6b7280;
}

/* ===== LEGAL CARD ===== */
.legal-card {
	background: white;
	border-radius: 18px;
	padding: 22px;
	transition: 0.3s ease;
	height: 100%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.legal-section {
	margin-top: 0;
	padding-top: 60px;
    margin-bottom: 120px;
}


.legal-card:hover {
	transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,170,155,0.15);
}

.legal-icon {
	width: 44px;
	height: 44px;
	background: rgba(0, 170, 155, 0.15);
	color: var(--primary-color);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.legal-tag {
	font-size: 10px;
	font-weight: 800;
	background: #f1f5f9;
	padding: 5px 14px;
	border-radius: 50px;
	display: inline-block;
	margin-bottom: 10px;
}

/* ===== FOOTER ===== */
.footer-simple {
	background: #fff;
	padding: 20px 0;
	border-top: 1px solid #e5e7eb;
	text-align: center;
	font-size: 0.8rem;
	color: #6b7280;
}

/* ===== PAGE TITLE CONTENT ===== */
.page-subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.page-title {
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 15px;
	color: white;
}

.page-description {
	max-width: 650px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	font-size: 0.95rem;
}

.legal-card h4 {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 10px;
}

.legal-card p {
	color: #6b7280;
	font-size: 0.8rem;
	line-height: 1.6;
}

.legal-card hr {
	opacity: 0.1;
	margin: 20px 0;
}

.status-badge {
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	background: rgba(0, 170, 155, 0.15);
	color: var(--primary-color);
}

/* ===== TABLE LEGAL ===== */
.table-legal {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.table-legal thead {
	background: var(--primary-color);
	color: white;
}

.table-legal th {
	font-size: 0.85rem;
	font-weight: 600;
	padding: 16px !important;
	border: none;
}

.table-legal td {
	font-size: 0.85rem;
	padding: 16px !important;
	vertical-align: middle;
	border-color: #f1f5f9;
}

.table-legal tbody tr:hover {
	background: rgba(0, 170, 155, 0.05);
}

.section-title {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.section-title span {
	width: 5px;
	height: 30px;
	background: var(--primary-color);
	border-radius: 10px;
}

.section-title h3 {
	font-weight: 800;
	margin: 0;
}


/* ===== RESPONSIVE MOBILE SETTINGS ===== */
@media (max-width: 768px) {
    /* Mengurangi padding atas body agar tidak terlalu jauh ke bawah */
    body {
        padding-top: 60px;
    }

    /* Menyesuaikan ukuran section judul agar tidak terlalu tinggi di HP */
    .page-title-section {
        padding: 60px 20px;
    }

    /* Mengatur grid agar kartu (legal-card) bertumpuk ke bawah (1 kolom) */
    .legal-card {
        margin-bottom: 20px;
    }

    /* Membuat tabel bisa di-scroll ke samping jika kepanjangan di layar HP */
    .table-legal {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Menyesuaikan ukuran teks judul agar pas di layar kecil */
    .page-title {
        font-size: 1.5rem; /* Ukuran lebih kecil dari desktop */
    }

    /* Menyesuaikan jarak section agar tidak terlalu renggang */
    .legal-section {
        padding-top: 30px;
        margin-bottom: 60px;
    }
}
