
        :root {
            --primary: #0066cc;
            --dark: #1a1a1a;
            --light: #8b8f94;
        }

        body {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
            background-color: #909da6;
        }



        /* ==================== REST OF YOUR STYLES ==================== */


        header {
            background: linear-gradient(135deg, var(--dark), #003366);
            color: white;
            padding: 4rem 1rem 3rem;
            text-align: center;
            margin-top: 55px; /* Space for floating menu */

            border-radius: 24px;   /* Adjust value for more/less rounding */
             overflow: hidden;      /* Ensures corners clip background/image */
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1rem;
            
}
        

        nav {
            background: #f1f1f1;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        nav a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 600;
        }

        .hero {
            padding: 4rem 0;
            text-align: center;
            background: #f8f9fa;

        

        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        section {
            padding: 3rem 0;
        }

        h2 {
            color: var(--primary);
            border-bottom: 3px solid #eee;
            padding-bottom: 0.5rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: #dfe6f2;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        footer {
            background: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
        }

      

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            nav ul { flex-direction: column; text-align: center; gap: 1rem; }
        }





 /* ==================== FLOATING MENU BAR ==================== */
        .floating-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
   
                        

            background:rgba(0, 20, 80, 0.6);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #ddd;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0.6rem 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            font-size: 2rem;
            font-weight: 600;
        }

        .floating-menu a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .floating-menu a:hover {
            color: var(--primary);
        }

        /* Make it smaller on mobile */
        @media (max-width: 768px) {
            .floating-menu {
                gap: 1rem;
                font-size: 0.9rem;
                padding: 0.5rem 0.8rem;
                flex-wrap: wrap;
            }
        }




                              /* need for company links  */
                            
                       
                            .resource-links {
                                font-family: Arial, sans-serif;
                                max-width: 600px;
                                margin: 20px;
                            }
                        
                            .company-link {
                                display: block;
                                margin: 12px 0;
                                padding: 8px;
                                background: #f5f5f5;
                                border-radius: 5px;
                                text-decoration: none;
                                color: #0066cc;
                            }
                        
                            .company-link:hover {
                                background: #e0e0e0;
                                text-decoration: underline;
                            }
                        
                            .company-name {
                                font-weight: bold;
                            }
                        
                            .company-url {
                                font-size: 0.85em;
                                color: #666;
                                margin-left: 10px;
                            }



                            
 /* ==================== read more article links ==================== */


    /* Keep base font styling */
    .resource-links { 
        font-family: Arial, sans-serif; 
        max-width: 600px; 
        margin: 20px; 
    }
    
    /* 
      FIX: The colored area no longer extends to the right.
      Using inline-block makes the background only as wide as the text + padding.
      The box now neatly wraps just the visible content.
    */
    .company-link { 
        display: inline-block;          /* ← KEY FIX: background shrinks to content width */
        margin: 12px 0; 
        padding: 8px 12px;             /* comfortable inner spacing, but box stops with text */
        background: #abafb0; 
        border-radius: 5px; 
        text-decoration: none; 
        color: #0066cc;
        /* ensure proper inline-block behavior */
        vertical-align: middle;
    }
    
    .company-link:hover { 
        background: #e0e0e0; 
        text-decoration: underline; 
    }
    
    .company-name { 
        font-weight: bold; 
    }
    
    /* The .company-url and .description styles are kept but not used in this snippet */
    .company-url { 
        font-size: 0.85em; 
        color: #000000; 
        margin-left: 10px; 
    }
    
    .description { 
        margin: 15px 0; 
        padding: 10px; 
        background: #e8f4f8; 
        border-left: 4px solid #000000; 
        line-height: 1.5; 
    }
  
                           



    