/* Header Styles */
        .header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0;
            position: relative;
        }
        
        .header .navbar {
            padding: 15px 0;
        }
        
        .header .navbar-brand img {
            height: 40px;
            width: auto;
        }
        
        .header .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            padding: 8px 0 !important;
            transition: all 0.3s ease;
            position: relative;
            text-transform: capitalize;
            font-size: 0.95rem;
        }
        
        .header .navbar-nav .nav-link:hover {
            color: #1e40af !important;
        }
        
        .header .navbar-nav .nav-link.dropdown-toggle::after {
            margin-left: 0.5em;
        }
        
        /* Dropdown menu styling */
        .dropdown-menu {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #1e40af;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-section .subtitle {
            color: #fbbf24;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        /* Footer Styles */
        .footer {
            background: #2d3748;
            color: white;
            padding: 60px 0 0 0;
            margin-top: 80px;
        }
        
        .footer-content {
            padding: 0 0 40px 0;
        }
        
        .footer h6 {
            color: #ffffff;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer p, .footer a {
            color: #a0aec0;
            text-decoration: none;
            line-height: 1.8;
            font-weight: 400;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer a:hover {
            color: #ffffff;
        }
        
        .footer .list-unstyled li {
            margin-bottom: 8px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .contact-item span {
            color: #a0aec0;
            font-size: 0.9rem;
        }
        
        .contact-form {
            margin-top: 20px;
        }
        
        .contact-form .input-group {
            margin-bottom: 15px;
        }
        
        .contact-form input {
            background: #4a5568;
            border: 1px solid #718096;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
        }
        
        .contact-form input::placeholder {
            color: #a0aec0;
        }
        
        .contact-form input:focus {
            background: #4a5568;
            border-color: #1e40af;
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
        }
        
        .contact-form .btn-go {
            background: #1e40af;
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        
        .contact-form .btn-go:hover {
            background: #1d4ed8;
        }
        
        .social-links {
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            margin-right: 10px;
            background: #4a5568;
            border-radius: 4px;
            color: #a0aec0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #1e40af;
            color: white;
        }
        
        .footer-bottom {
            background: #1a202c;
            margin-top: 40px;
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid #4a5568;
        }
        
        .footer-bottom p {
            margin: 0;
            color: #a0aec0;
            font-size: 0.85rem;
        }
        
        .footer-bottom a {
            color: #60a5fa;
            font-weight: 500;
        }
        
        .footer-bottom a:hover {
            color: #3b82f6;
        }

        /* Main content styling */
        body {
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .main-content {
            padding: 20px;
            min-height: 400px;
        }
        
        .form-section {
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .form-section h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1e40af;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                text-align: center;
            }
            
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-section .subtitle {
                font-size: 1rem;
            }
            
            .footer {
                padding: 40px 0 0 0;
            }
            
            .footer h6 {
                margin-top: 30px;
                margin-bottom: 20px;
            }
            
            .footer h6:first-child {
                margin-top: 0;
            }
            
            .contact-form input {
                margin-bottom: 10px;
            }
            
            .social-links {
                text-align: center;
                margin-top: 25px;
            }
            
            .form-section {
                padding: 15px;
            }
        }