/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
}

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

/* Navigation Bar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #f8fafc;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    position: relative;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: none;
}

.nav-text {
    display: block;
}

.nav-link:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-1px);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link.active {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.nav-link.active i {
    transform: scale(1.05);
}

/* Tooltip Styles */
.nav-link::before {
    content: attr(title);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: #f8fafc;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: rgba(15, 23, 42, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f8fafc;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #f8fafc;
    text-align: center;
    padding: 140px 20px 100px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    color: #94a3b8;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

.content-wrapper {
    background: #1e293b;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(59, 130, 246, 0.2);
}

.content-wrapper h2 {
    color: #f8fafc;
    margin-bottom: 25px;
    font-size: 2.2rem;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

/* Footer Styles */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3b82f6;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

/* Social Media Links Styling */
#footer-social li {
    margin-bottom: 8px;
}

#footer-social li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#footer-social li a:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    color: #60a5fa;
    transform: translateX(5px);
}

#footer-social li a:active {
    transform: translateX(2px);
}

#footer-social li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

#footer-social li a:hover i {
    transform: scale(1.1);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 8px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(148, 163, 184, 0.2);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        justify-content: flex-start;
        min-width: auto;
        height: auto;
        gap: 1rem;
    }
    
    .nav-link i {
        font-size: 1.2rem;
        min-width: 24px;
        display: block;
    }
    
    .nav-text {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(96, 165, 250, 0.1);
        transform: none;
    }
    
    .nav-link:hover i {
        transform: scale(1.05);
    }
    
    /* Hide tooltips on mobile */
    .nav-link::before,
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        padding: 30px;
        margin: 0 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

th {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #64748b, #475569);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

    /* Responsive disclaimer */
    @media (max-width: 768px) {
        .rating-definitions {
            grid-template-columns: 1fr;
        }
        
        .disclaimer-section {
            padding: 20px;
            margin: 0 10px 25px 10px;
        }
        
        .disclaimer-section h3 {
            font-size: 1.2rem;
        }
        
        .disclaimer-section h4 {
            font-size: 1.1rem;
        }
    }
    
    /* Grievance Redressal Page Styles */
    .grievance-section {
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
    }
    
    .grievance-section.standard {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
    
    .grievance-section.warning {
        background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
        border-left: 4px solid #f59e0b;
    }
    
    .grievance-section.important {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        border-left: 4px solid #3b82f6;
    }
    
    .grievance-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
    
    .grievance-section h3 {
        color: #f8fafc;
        margin-bottom: 18px;
        font-size: 1.4rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }
    
    .grievance-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 2px;
    }
    
    .grievance-section h4 {
        color: #e2e8f0;
        margin: 20px 0 15px 0;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .grievance-section h5 {
        color: #e2e8f0;
        margin: 15px 0 10px 0;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .grievance-section p {
        color: #cbd5e1;
        margin-bottom: 15px;
        line-height: 1.7;
    }
    
    .grievance-section ul {
        margin: 15px 0;
        padding-left: 20px;
    }
    
    .grievance-section ul li {
        color: #cbd5e1;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .grievance-section.standard ul li::before {
        content: "•";
        color: #3b82f6;
        font-weight: bold;
        margin-right: 8px;
    }
    
    .grievance-section.warning ul li::before {
        content: "⚠️";
        margin-right: 8px;
    }
    
    .grievance-section.important ul li::before {
        content: "🔹";
        color: #60a5fa;
        margin-right: 8px;
    }
    
    .contact-info {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #10b981;
    }
    
    .contact-info p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .contact-info p:last-child {
        margin-bottom: 0;
    }
    
    .contact-channels {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #f59e0b;
    }
    
    .contact-channels p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .contact-channels p:last-child {
        margin-bottom: 0;
    }
    
    .sebi-platforms {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #ef4444;
    }
    
    .sebi-platforms p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .sebi-platforms p:last-child {
        margin-bottom: 0;
    }
    
    .mobile-apps {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #8b5cf6;
    }
    
    .mobile-apps p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .mobile-apps p:last-child {
        margin-bottom: 0;
    }
    
    .tool-item {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #06b6d4;
    }
    
    .tool-item p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .tool-item p:last-child {
        margin-bottom: 0;
    }
    
    .protection-section {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #f59e0b;
    }
    
    .protection-section h4 {
        color: #fbbf24;
        margin-bottom: 15px;
    }
    
    .protection-section h5 {
        color: #fbbf24;
        margin: 20px 0 10px 0;
    }
    
    .warning-note {
        background: rgba(245, 158, 11, 0.1);
        padding: 15px;
        border-radius: 8px;
        border-left: 3px solid #f59e0b;
        margin: 15px 0;
        color: #fef3c7;
        font-weight: 600;
    }
    
    .disclaimer-box {
        background: rgba(239, 68, 68, 0.1);
        padding: 15px;
        border-radius: 8px;
        border-left: 3px solid #ef4444;
        margin: 15px 0;
    }
    
    .disclaimer-box h5 {
        color: #fca5a5;
        margin-bottom: 10px;
    }
    
    .disclaimer-box p {
        color: #fecaca;
    }
    
    .bse-links {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin: 15px 0;
        border-left: 3px solid #059669;
    }
    
    .bse-links p {
        margin-bottom: 8px;
        color: #e2e8f0;
    }
    
    .bse-links p:last-child {
        margin-bottom: 0;
    }
    
    .grievance-section a {
        color: #60a5fa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .grievance-section a:hover {
        color: #93c5fd;
        text-decoration: underline;
    }
    
    /* Responsive grievance redressal */
    @media (max-width: 768px) {
        .grievance-section {
            padding: 20px;
            margin: 0 10px 25px 10px;
        }
        
        .grievance-section h3 {
            font-size: 1.2rem;
        }
        
        .grievance-section h4 {
            font-size: 1.1rem;
        }
        
        .grievance-section h5 {
            font-size: 1rem;
        }
    }
    
    /* Refund Policy Page Styles */
    .refund-section {
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
    }
    
    .refund-section.standard {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
    
    .refund-section.warning {
        background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
        border-left: 4px solid #f59e0b;
    }
    
    .refund-section.important {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        border-left: 4px solid #3b82f6;
    }
    
    .refund-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
    
    .refund-section h3 {
        color: #f8fafc;
        margin-bottom: 18px;
        font-size: 1.4rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }
    
    .refund-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 2px;
    }
    
    .refund-section p {
        color: #cbd5e1;
        margin-bottom: 15px;
        line-height: 1.7;
    }
    
    .refund-section ul {
        margin: 15px 0;
        padding-left: 20px;
    }
    
    .refund-section ul li {
        color: #cbd5e1;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .refund-section.standard ul li::before {
        content: "•";
        color: #3b82f6;
        font-weight: bold;
        margin-right: 8px;
    }
    
    .refund-section.warning ul li::before {
        content: "⚠️";
        margin-right: 8px;
    }
    
    .refund-section.important ul li::before {
        content: "🔹";
        color: #60a5fa;
        margin-right: 8px;
    }
    
    .key-points {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    
    .key-point-item {
        background: rgba(15, 23, 42, 0.5);
        padding: 20px;
        border-radius: 8px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .key-point-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-color: rgba(245, 158, 11, 0.3);
    }
    
    .key-point-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .key-point-text {
        color: #cbd5e1;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .refund-section a {
        color: #60a5fa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .refund-section a:hover {
        color: #93c5fd;
        text-decoration: underline;
    }
    
    /* Responsive refund policy */
    @media (max-width: 768px) {
        .key-points {
            grid-template-columns: 1fr;
        }
        
        .refund-section {
            padding: 20px;
            margin: 0 10px 25px 10px;
        }
        
        .refund-section h3 {
            font-size: 1.2rem;
        }
        
        .key-point-item {
            padding: 15px;
        }
    }
    
    /* MITC Page Styles */
    .mitc-section {
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
    }
    
    .mitc-section.standard {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
    
    .mitc-section.warning {
        background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
        border-left: 4px solid #f59e0b;
    }
    
    .mitc-section.important {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        border-left: 4px solid #3b82f6;
    }
    
    .mitc-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
    
    .mitc-section h3 {
        color: #f8fafc;
        margin-bottom: 18px;
        font-size: 1.4rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }
    
    .mitc-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 2px;
    }
    
    .mitc-section h4 {
        color: #e2e8f0;
        margin: 20px 0 15px 0;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .mitc-section p {
        color: #cbd5e1;
        margin-bottom: 15px;
        line-height: 1.7;
    }
    
    .mitc-section ul {
        margin: 15px 0;
        padding-left: 20px;
    }
    
    .mitc-section ul li {
        color: #cbd5e1;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .mitc-section.standard ul li::before {
        content: "•";
        color: #3b82f6;
        font-weight: bold;
        margin-right: 8px;
    }
    
    .mitc-section.warning ul li::before {
        content: "⚠️";
        margin-right: 8px;
    }
    
    .mitc-section.important ul li::before {
        content: "🔹";
        color: #60a5fa;
        margin-right: 8px;
    }
    
    .mitc-section a {
        color: #60a5fa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mitc-section a:hover {
        color: #93c5fd;
        text-decoration: underline;
    }
    
    /* Responsive MITC */
    @media (max-width: 768px) {
        .mitc-section {
            padding: 20px;
            margin: 0 10px 25px 10px;
        }
        
        .mitc-section h3 {
            font-size: 1.2rem;
        }
        
        .mitc-section h4 {
            font-size: 1.1rem;
        }
    }

/* Homepage Styles */
.profile-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.profile-image i {
    font-size: 3rem;
    color: white;
}

.profile-info h1 {
    color: #f8fafc;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-info h2 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.profile-info p {
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.profile-info p strong {
    color: #10b981;
}

.profile-info p i {
    color: #f59e0b;
    margin-right: 8px;
}

.services-section, .features-section, .contact-section {
    margin-bottom: 40px;
}

.services-section h2, .features-section h2, .contact-section h2 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.services-section h2::after, .features-section h2::after, .contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-section p {
    color: #cbd5e1;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-item {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: #3b82f6;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: #f8fafc;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.3rem;
    }
    
    .services-grid, .features-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-section, .service-card, .contact-item {
        padding: 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 25px;
        margin: 0 10px 30px 10px;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .services-section h2, .features-section h2, .contact-section h2 {
        font-size: 1.6rem;
    }
    
    .service-card, .contact-item {
        padding: 20px;
    }
}
