:root {
    --primary: #2563eb;
    --secondary: #64748b;
    --accent: #f0f9ff;
    --text: #1e293b;
    --bg: #f8fafc;
}

body { background-color: var(--bg); font-family: 'Inter', sans-serif; color: var(--text); }

.birth-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

/* HERO */
.birth-hero { text-align: center; margin-bottom: 50px; }
.birth-hero .badge { background: #dbeafe; color: #1e40af; padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 14px; display: inline-block; margin-bottom: 15px; }
.birth-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; color: #0f172a; }
.birth-hero p { font-size: 1.2rem; color: var(--secondary); max-width: 600px; margin: 0 auto 30px; }

.hero-actions { display: flex; gap: 15px; justify-content: center; }
.btn-primary { background: var(--primary); color: white; padding: 12px 25px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.btn-secondary { background: white; border: 1px solid #e2e8f0; color: var(--text); padding: 12px 25px; border-radius: 10px; text-decoration: none; font-weight: 600; }

/* GRID LAYOUT */
.birth-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }

.glass-card { background: white; border: 1px solid #e2e8f0; border-radius: 20px; padding: 35px; margin-bottom: 30px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.glass-card h2 { margin-bottom: 25px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }

/* DOC LIST */
.doc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.doc-item { display: flex; gap: 15px; align-items: flex-start; background: var(--accent); padding: 15px; border-radius: 12px; }
.doc-item .icon { font-size: 24px; }
.doc-item h4 { margin: 0; font-size: 16px; }
.doc-item p { margin: 5px 0 0; font-size: 13px; color: var(--secondary); }

.late-reg-box { background: #fff7ed; border-left: 4px solid #f97316; padding: 15px; border-radius: 8px; font-size: 14px; }

/* FORM */
.interactive-form { background: #f1f5f9; padding: 25px; border-radius: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 15px; box-sizing: border-box;}

.print-btn { width: 100%; background: #10b981; color: white; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px; }

/* FAQ */
details { background: #fff; border: 1px solid #e2e8f0; margin-bottom: 10px; border-radius: 10px; padding: 15px; cursor: pointer; }
summary { font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '＋'; color: var(--primary); }
details[open] summary::after { content: '－'; }
details p { margin-top: 10px; font-size: 14px; color: var(--secondary); }

/* SIDEBAR */
.sidebar-box { padding: 25px; border-radius: 20px; margin-bottom: 20px; }
.blue-box { background: var(--primary); color: white; }
.help-box { background: white; border: 1px solid #e2e8f0; }
.sidebar-box ul { padding-left: 20px; margin-top: 15px; }
.sidebar-box li { margin-bottom: 10px; font-size: 14px; }

/* PRINT STYLES */
@media print {
    .birth-hero, .birth-sidebar, .doc-list, .faq-section, .btn-secondary, .print-btn { display: none !important; }
    .birth-main, .form-generator { width: 100% !important; border: none !important; box-shadow: none !important; }
    body { background: white; }
    .interactive-form { background: transparent; }
    input { border-bottom: 1px solid #000 !important; border-top:none; border-left:none; border-right:none; }
}

@media (max-width: 900px) {
    .birth-grid { grid-template-columns: 1fr; }
    .doc-list { grid-template-columns: 1fr; }
}
:root {
    --kp-green: #2d6a4f;
    --kp-light: #f0fdf4;
    --primary: #0d6efd;
    --border: #e2e8f0;
}

.birth-hero .official-seal {
    background: var(--kp-green);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* INFO TILES */
.info-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tile {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tile span { font-size: 30px; display: block; margin-bottom: 10px; }
.tile h4 { margin: 0; color: #64748b; font-size: 13px; text-transform: uppercase; }
.tile p { margin: 5px 0 0; font-weight: 800; font-size: 18px; color: var(--kp-green); }

/* FEE TABLE */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.fee-table th {
    text-align: left;
    background: #f8fafc;
    padding: 12px;
    border-bottom: 2px solid var(--border);
}

.fee-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.fee-table tr:last-child td { border: none; }

/* TIMELINE LIST */
.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.warning-box {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #991b1b;
}
/* FORM CALL TO ACTION CARD */
.form-cta-card {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border: 2px solid #0d6efd;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-text h2 {
    color: #0d6efd;
    margin-bottom: 8px;
    font-size: 24px;
}

.cta-text p {
    color: #475569;
    margin: 0;
}

.cta-btn {
    background: #0d6efd;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #084298;
    transform: scale(1.03);
}

/* STEPPER STYLES */
.stepper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background: #0d6efd;
    color: white;
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.step-info h4 { margin: 0 0 5px; color: #1e293b; }
.step-info p { margin: 0; font-size: 14px; color: #64748b; }

/* REUSABLE LISTS */
.check-list, .time-list { list-style: none; padding: 0; }
.check-list li::before { content: "✓ "; color: #10b981; font-weight: bold; }
.time-list li { border-bottom: 1px solid #e2e8f0; padding: 8px 0; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .cta-content { flex-direction: column; text-align: center; }
    .birth-hero h1 { font-size: 2rem; }
}
/* Rest of previous styles for Form and Accordion... */