:root{
    --primary: #4ea1ff;
    --dark: #1b1b1b;
    --text: #666;
    --light: #f4f7fb;
    --white: #fff;
    --card: #e9eef2;
    --icon-bg:#f3f6f9;

}


body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
           
            color: #333;
        }

        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 10px 30px;
            background: white;
            border-radius: 10px
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .article h1 {
            text-align: center;
            margin-bottom: 35px;
            margin-top:20px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .article p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.9;
        }

        /* Optional: responsive images in article */
        .article img {
            max-width: 100%;
            border-radius: 8px;
            margin: 20px 0;
            display: block;
        }


        
.tabs{
display:flex;
justify-content:center;
gap:10px;
margin:30px 0;
}


.container-dua {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 30px;
    background: white;
    border-radius: 10px
}


.tabs-dua{
    display:flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    
}

.tab-btn{
    
padding:10px 25px;
border:none;
border-radius:10px;
background:#018b85;
cursor:pointer;
font-size:16px;
transition:0.3s;
color: aqua;
flex-wrap: wrap;
}

.tab-btn:hover{
background:#ddd;
}

.tab-btn.active{
background:#bdc000;
color:white;
}

.tab-content{
display:none;
animation:fade 0.5s;
}

.tab-content p
{
    color: var(--text);
}

.tab-content.active{
display:block;
}

@keyframes fade{
from{opacity:0;}
to{opacity:1;}
}

.main-image{
width:100%;
border-radius:10px;
margin-top:20px;
}


/* TABLE BAZNAS */

.table-container {
            width: 100%;
            max-width: 900px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            overflow: hidden; /* Memastikan border-radius bekerja */
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        thead {
            background-color: #ffffff;
            border-bottom: 2px solid #f1f1f1;
        }

        th {
            padding: 18px 24px;
            font-weight: 600;
            color: #495057;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        td {
            padding: 16px 24px;
            color: #6c757d;
            font-size: 0.95rem;
            border-bottom: 1px solid #f8f9fa;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover {
            background-color: #7c005d;
            transition: background 0.2s ease;
        }

        /* Badge Simple untuk Jenis Kelamin/Bantuan */
        .badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background: #e9ecef;
            color: #495057;
        }