/* Base and Common Styles from gov.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Common elements */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 10px;
    display: inline-block;
}

h2 {
    color: #0066cc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
}

h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Page Specific Styles */
.page-header {
    border-bottom: 2px solid #99ccff;
    color: #0066cc;
    text-align: center;
    padding: 25px 30px;
    margin: 20px auto;
    width: 100%;
}

.breadcrumb {
    font-size: 14px;
    color: #0066cc;
}

.schemes-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.schemes-intro {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(77, 148, 255, 0.1);
    margin-bottom: 30px;
}

.schemes-intro h2 {
    color: #333;
    margin-bottom: 15px;
}

.schemes-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(77, 148, 255, 0.1);
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    background: #f7f7f7;
    border-radius: 8px 8px 0 0;
}

.tab {
    padding: 14px 20px;
    cursor: pointer;
    background: #eee;
    border: 1px solid #ddd;
    border-bottom: none;
    margin-right: 2px;
    user-select: none;
    transition: background-color 0.3s;
    flex: 1;
    text-align: center;
}

.tab.active {
    background: #fff;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}

.tab-content {
    padding: 20px;
    line-height: 1.8;
    display: none;
    min-height: 200px;
}

.tab-content.active {
    display: block;
}

.schemes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.scheme-card {
    background: #e6f2ff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(77, 148, 255, 0.1);
    transition: transform 0.3s;
    margin-bottom:15px;
}

.scheme-card:hover {
    transform: translateY(-5px);
}

.scheme-header {
    background-color: #0066cc;
    color: white;
    padding: 15px;
}

.scheme-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
}

.scheme-body {
    padding: 15px;
}

.scheme-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.scheme-btn {
    display: inline-block;
    background-color: #4d94ff;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.scheme-btn:hover {
    background-color: #3d84ef;
}

.application-process {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(77, 148, 255, 0.1);
}

.application-process h2 {
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step {
    text-align: center;
    background: #e6f2ff;
    padding: 15px;
    border-radius: 8px;
}

.step-number {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 5px;
}

.step h3 {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .schemes-list,
    .process-steps {
        grid-template-columns: 1fr;
    }
    .tab {
        font-size: 14px;
    }
}