
        :root {
            --primary-blue: #0b2b53;
            --sky-blue: #03c9d7;
            --solar-gold: #fcd814;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --text-main: #333;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { font-family: 'Roboto', sans-serif; background: var(--light-bg); color: var(--text-main); }
        
        /* --- Navbar (Same as Home) --- */
        .top-bar { background: var(--primary-blue); color: var(--white); padding: 8px 0; font-size: 0.9rem; border-bottom: 2px solid var(--sky-blue); }
        .container { width: 90%; max-width: 1200px; margin: auto; }
        .flex-between { display: flex; justify-content: space-between; align-items: center; }
        .navbar { background: var(--white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .logo { font-size: 1.8rem; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary-blue); display: flex; align-items: center; gap: 5px; }
        .logo span { color: var(--solar-gold); }
        .nav-links a { text-decoration: none; color: var(--primary-blue); font-weight: 500; margin-left: 25px; transition: 0.3s; }
        .nav-links a:hover { color: var(--sky-blue); }
        .nav-links .btn-quote { background: var(--primary-blue); color: #fff; padding: 10px 20px; border-radius: 5px; }

        /* --- Page Header --- */
        .page-header {
            background: linear-gradient(rgba(11, 43, 83, 0.8), rgba(11, 43, 83, 0.8)), url('https://images.pexels.com/photos/9875415/pexels-photo-9875415.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        .page-header h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; margin-bottom: 10px; }
        .page-header p { font-size: 1.2rem; color: var(--solar-gold); }

        /* --- About Content --- */
        .section { padding: 60px 0; }
        .about-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
        .about-text { flex: 1; min-width: 300px; }
        .about-text h2 { color: var(--primary-blue); font-size: 2.2rem; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
        .about-text p { margin-bottom: 15px; line-height: 1.8; color: #555; }
        .about-image { flex: 1; min-width: 300px; }
        .about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 5px solid white; }

        /* --- Vision & Mission --- */
        .vm-section { background: var(--white); }
        .vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .vm-card { background: var(--light-bg); padding: 40px; border-radius: 10px; border-left: 5px solid var(--solar-gold); transition: 0.3s; }
        .vm-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .vm-icon { font-size: 3rem; color: var(--primary-blue); margin-bottom: 20px; }
        .vm-card h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.5rem; }

        /* --- Legal Details Table --- */
        .legal-section { background: var(--primary-blue); color: white; padding: 60px 0; }
        .legal-section h2 { text-align: center; color: var(--solar-gold); margin-bottom: 40px; }
        .legal-table { width: 100%; max-width: 800px; margin: auto; border-collapse: collapse; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
        .legal-table td { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .legal-table tr:last-child td { border-bottom: none; }
        .legal-label { font-weight: bold; color: var(--sky-blue); width: 40%; }
        .legal-value { color: white; }

        /* --- Director Message --- */
        .director-msg { background: var(--white); text-align: center; max-width: 800px; margin: 60px auto; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .director-msg i { font-size: 3rem; color: var(--solar-gold); opacity: 0.5; }
        .director-msg p { font-size: 1.1rem; font-style: italic; color: #555; margin: 20px 0; }
        .director-msg h4 { color: var(--primary-blue); }

        /* --- Footer (Same as Home) --- */
        footer { background: #05162b; color: #aaa; padding: 50px 0 20px; margin-top: 0; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

        /* Responsive */
        @media (max-width: 768px) {
            .about-layout { flex-direction: column; }
            .nav-links { display: none; }
            .top-bar { display: none; }
        
		}
    
