  :root {
            --primary: #1a73e8;
            --secondary: #f4b400;
            --success: #0f9d58;
            --dark: #202124;
            --light: #f8f9fa;
            --text: #3c4043;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #eef2f7;
            color: var(--text);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        header h1 { margin: 0; font-size: 2.8em; letter-spacing: 1px; }
        header p { opacity: 0.9; font-size: 1.2em; margin-top: 10px; }

        .nav-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        main {
            max-width: 1000px;
            margin: -40px auto 40px;
            padding: 0 20px;
        }

        section {
            background: white;
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary);
            transition: transform 0.3s ease;
        }

        section:hover { transform: translateY(-5px); }

        h2 { color: var(--primary); font-size: 1.8em; margin-top: 0; display: flex; align-items: center; gap: 10px; }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85em;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .btn-blue { background: var(--primary); color: white; }
        .btn-yellow { background: var(--secondary); color: white; }
        .btn-green { background: var(--success); color: white; }
        .btn-outline { background: transparent; border: 2px solid white; color: white; }

        .btn:hover {
            filter: brightness(1.1);
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }

        ul { list-style: none; padding: 0; }
        li { 
            background: #f1f3f4; 
            margin: 12px 0; 
            padding: 20px; 
            border-radius: 12px; 
            border-left: 6px solid var(--secondary);
        }

        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .card {
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }

        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 50px 20px;
        }

        .contact-card {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 20px;
        }

.shortia{
    display: flex;
    justify-content: center;
}