/* Additional styles for landing page */
        .hero-section {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-top: 10px;
            font-weight: 400;
        }
        
		.disclaimer {
    font-size: 0.85em;
    font-style: italic;
}
		
        .navigation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .nav-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .nav-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(22, 160, 133, 0.15);
            text-decoration: none;
            color: inherit;
        }
        
        .nav-card h3 {
            margin: 0 0 10px 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: #16a085;
        }
        

        .nav-card p {
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .nav-card.external::after {
            content: '↗';
            float: right;
            font-size: 1.2rem;
            color: #16a085;
            font-weight: 600;
        }
        
        .section-divider {
            margin: 60px 0 40px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            background: linear-gradient(135deg, #16a085 0%, #f39c12 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }
        
        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .coming-soon-card {
            background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 2px dashed rgba(22, 160, 133, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .coming-soon-card:hover {
            transform: translateY(-2px);
            border-color: rgba(22, 160, 133, 0.5);
        }
        
        .coming-soon-card h4 {
            margin: 0 0 10px 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: #16a085;
        }
        
        .coming-soon-card p {
            margin: 0 0 15px 0;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .coming-soon-badge {
            display: inline-block;
            background: linear-gradient(135deg, #16a085 0%, #f39c12 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer {
            margin-top: 60px;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(22, 160, 133, 0.2);
            color: #666;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .navigation-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .coming-soon-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .nav-card {
                padding: 25px;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }