@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1e40af;
    --primary-hover: #1e3a8a;
    --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --secondary-gradient: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    --accent-gradient: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    --success: #15803d;
    --success-gradient: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    --bg-dark: #0f172a;
    --bg-light: #f1f5f9;
    --card-light: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tricolor Strip for Government Look */
.tricolor-strip {
    height: 6px;
    width: 100%;
    display: flex;
}
.tricolor-saffron { background: #ff9933; flex: 1; }
.tricolor-white { background: #ffffff; flex: 1; }
.tricolor-green { background: #138808; flex: 1; }

/* Announcement Marquee Ticker */
.ticker-wrapper {
    background: #fef08a;
    border-bottom: 1px solid #fef08a;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    color: #854d0e;
    font-size: 0.9rem;
    font-weight: 700;
}
.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header & Navigation */
.header-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid #1e40af;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.top-bar {
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-info a:hover {
    color: #fff;
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a {
    color: #cbd5e1;
    transition: var(--transition);
}

.top-bar-socials a:hover {
    color: #fff;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-img {
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-nav-apply {
    background: var(--primary-gradient);
    color: white !important;
    padding: 12px 26px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
    transition: var(--transition);
}

.nav-links .btn-nav-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.nav-links .btn-nav-apply::after,
.nav-links .btn-nav-apply:hover::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 20px;
    background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.7) 0%, rgba(245, 243, 255, 0.7) 90%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--text-main);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-icon-wrapper {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    color: var(--primary);
    margin-bottom: 5px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Floating Graphics or Card Preview */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

.visual-backdrop {
    position: absolute;
    width: 110%;
    height: 110%;
    background: var(--primary-gradient);
    filter: blur(40px);
    opacity: 0.15;
    border-radius: 30px;
    z-index: 1;
}

.visual-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Advertisement Spaces */
.ad-space {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.ad-box {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ad-box:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.ad-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ad-size {
    font-size: 1.1rem;
    font-weight: 700;
}

.ad-970 {
    height: 180px;
}

.ad-728 {
    height: 90px;
}

.ad-300 {
    height: 250px;
}

/* Scheme Section */
.schemes-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title-area {
    max-width: 600px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scheme-card {
    background: var(--card-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scheme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.scheme-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.scheme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.scheme-card:hover .scheme-img {
    transform: scale(1.05);
}

.scheme-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.scheme-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scheme-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.scheme-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.scheme-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.scheme-eligibility {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.btn-card-apply {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-card-apply:hover {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
}

/* Steps / How it works */
.steps-section {
    background: #fff;
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '➔';
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--border-color);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Info Grid & Sidebar (Ad + FAQ) */
.info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: var(--bg-dark);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.04);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
}

.faq-toggle-icon {
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-container {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open {
    display: flex;
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    background: var(--primary-gradient);
    color: #fff;
    padding: 25px;
    position: relative;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 30px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* WhatsApp Share Section */
.share-section {
    background: #f0fdf4;
    border: 1px dashed #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.share-title {
    color: #15803d;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-desc {
    font-size: 0.85rem;
    color: #166534;
    margin-bottom: 15px;
}

.share-progress-wrapper {
    background: #e2e8f0;
    border-radius: 100px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.share-progress-bar {
    background: var(--success-gradient);
    width: 0%;
    height: 100%;
    transition: width 0.4s ease-out;
}

.share-count-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 15px;
    display: block;
}

.btn-whatsapp-share {
    background: #25d366;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.btn-whatsapp-share:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-submit-claim {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: #94a3b8;
    cursor: not-allowed;
    transition: var(--transition);
}

.btn-submit-claim.active {
    background: var(--primary-gradient);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.btn-submit-claim.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

/* Success Modal View */
.success-view {
    display: none;
    text-align: center;
    padding: 20px 10px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px auto;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.success-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Footer styling */
footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 60px 20px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

/* Responsiveness */
@media(max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .schemes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
}

@media(max-width: 768px) {
    .gov-logo-sep, .gov-text-branding {
        display: none !important;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        gap: 0;
        z-index: 1100;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .btn-nav-apply {
        border-bottom: none;
        background: var(--primary-gradient);
        color: #fff !important;
        padding: 12px 35px !important;
        border-radius: 50px;
        width: auto !important;
        display: inline-block !important;
        margin: 20px auto 0 auto !important;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3) !important;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
