        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo h1 {
            color: #2a6496;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo p {
            color: #666;
            font-size: 0.9rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 1rem;
        }
        
        nav ul li a {
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #2a6496;
        }
        
        .user-actions .btn {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin-left: 0.5rem;
            font-weight: 500;
        }
        
        .user-actions .primary {
            background-color: #2a6496;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(42, 100, 150, 0.8), rgba(42, 100, 150, 0.9)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .search-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .search-tabs {
            display: flex;
            margin-bottom: 1rem;
        }
        
        .search-tabs button {
            padding: 0.5rem 1.5rem;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            color: #666;
            cursor: pointer;
        }
        
        .search-tabs button.active {
            color: #2a6496;
            border-bottom: 3px solid #2a6496;
        }
        
        .search-fields {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr auto;
            gap: 0.5rem;
        }
        
        .search-fields input, 
        .search-fields select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .search-btn {
            background-color: #2a6496;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: #1d4b75;
        }
        
        /* Features Section */
        .features {
            padding: 4rem 2rem;
            text-align: center;
            background-color: white;
        }
        
        .features h3 {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2a6496;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature {
            padding: 1.5rem;
            border-radius: 8px;
            background-color: #f8f9fa;
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .feature h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2a6496;
        }
        
        /* Popular Searches */
        .popular-searches {
            padding: 4rem 2rem;
            background-color: #f8f9fa;
        }
        
        .popular-searches h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2a6496;
        }
        
        .search-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .category h4 {
            color: #2a6496;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        
        .category ul {
            list-style: none;
        }
        
        .category ul li {
            padding: 0.5rem 0;
        }
        
        .category ul li a {
            color: #555;
            transition: color 0.3s;
        }
        
        .category ul li a:hover {
            color: #2a6496;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 4rem 2rem;
            background-color: white;
            text-align: center;
        }
        
        .testimonials h3 {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2a6496;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        
        .testimonial blockquote {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .testimonial p {
            font-weight: 500;
            color: #666;
        }
        
        /* Blog Preview */
        .blog-preview {
            padding: 4rem 2rem;
            background-color: #f8f9fa;
        }
        
        .blog-preview h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2a6496;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
        }
        
        article {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        article h4 a {
            color: #2a6496;
            transition: color 0.3s;
        }
        
        article h4 a:hover {
            color: #1d4b75;
        }
        
        article p {
            color: #666;
            margin-top: 0.5rem;
        }
        
        .see-more {
            display: block;
            text-align: center;
            color: #2a6496;
            font-weight: 500;
            max-width: 200px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: #2a6496;
            color: white;
            padding: 3rem 2rem 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-section p {
            opacity: 0.9;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .footer-section ul li a:hover {
            opacity: 1;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin: 1rem 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .search-fields {
                grid-template-columns: 1fr;
            }
            
            .feature-grid,
            .search-categories,
            .article-grid {
                grid-template-columns: 1fr;
            }
        }