*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1000px;
    margin:auto;
}

.header{
    background:#1e3a8a;
    color:white;
    padding:20px 0;
    margin-bottom:30px;
}

.header h1{
    margin-bottom:5px;
}

.subtitle{
    opacity:0.9;
    margin-bottom:20px;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    text-decoration:underline;
}

main{
    min-height:70vh;
}

.hero{
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.hero h2{
    margin-bottom:20px;
}

.hero p{
    margin-bottom:30px;
    color:#555;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:12px 24px;
    text-decoration:none;
    border-radius:6px;
}

.btn:hover{
    background:#1d4ed8;
}

footer{
    margin-top:50px;
    background:#111827;
    color:white;
    text-align:center;
    padding:20px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:bold;
}

input{
    width:100%;
    padding:10px;
    border:1px solid #d1d5db;
    border-radius:6px;
}

.table{
    width:100%;
    border-collapse:collapse;
}

.table th,
.table td{
    padding:14px;
    border-bottom:1px solid #ddd;
    text-align:left;
}

.table th{
    background:#f3f4f6;
}

.table tr:hover{
    background:#f9fafb;
}

.details-table{
    width:100%;
}

.details-table td{
    padding:12px;
    border-bottom:1px solid #eee;
}

.details-table td:first-child{
    width:220px;
    font-weight:bold;
}

.btn-small{
    background:#2563eb;
    color:white;
    padding:6px 14px;
    border-radius:5px;
    text-decoration:none;
}

.text-muted{
    color:#6b7280;
    margin-bottom:20px;
}

.info-box{
    margin:20px 0;
    padding:16px;
    background:#eff6ff;
    border-left:5px solid #2563eb;
    border-radius:6px;
}

.hero{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.hero h2{
    font-size:34px;
    margin-bottom:15px;
}

.hero-text{
    color:#555;
    line-height:1.8;
}

.hero-buttons{
    margin-top:25px;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    margin-right:10px;
}

.btn:hover{
    background:#1d4ed8;
}

.btn-secondary{
    display:inline-block;
    border:2px solid #2563eb;
    color:#2563eb;
    padding:10px 22px;
    border-radius:6px;
    text-decoration:none;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:20px 0 40px;
}

.dashboard-card{
    background:white;
    border-radius:10px;
    padding:25px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    text-align:center;
}

.dashboard-card h3{
    margin-bottom:10px;
}

.action-card{
    background:white;
    padding:25px;
    text-decoration:none;
    color:#222;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.2s;
}

.action-card:hover{
    transform:translateY(-4px);
}

.badge-container{
    margin:20px 0 40px;
}

.badge{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:8px 14px;
    border-radius:20px;
    margin:6px;
    font-size:14px;
}

.feature-list{
    margin-left:20px;
    line-height:2;
}

.info-box{
    background:#eef6ff;
    border-left:5px solid #2563eb;
    padding:18px;
    border-radius:8px;
    margin:30px 0;
}

.card{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}