body {
            font-family: 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #eef2f7, #ffffff);
            margin: 0;
        }

        /* Top Header */
        .topbar {
            background: #fffffb;
            border-bottom: 1px solid #e2e2e2;
            padding: 10px 0;
        }

        .logo {
            height: 80px;
            max-width: 100%;
        }

        .contact-info {
            font-size: 18px;
            font-weight: 600;
            color: #0d3b66;
        }

        .contact-info i {
            margin-right: 5px;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 700;
        }

        .hero p {
            color: #555;
        }

        /* Card */
        .register-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            animation: fadeInUp 0.6s ease;
        }

        .btn-register {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-register:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-outline-primary{
            border: 1px solid #064ca2;
            color: #064ca2;
        }

        .phone{
            color: #064ca2;
            text-decoration: none;
        }

        /* Footer */
        .footer {
            background: #000;
            color: #ccc;
            text-align: center;
            padding: 20px;
            font-size: 14px;
            margin-top: 50px;
        }

        .hero-section{
            background: #064ca2;
        }
        .hero-section a{
            text-decoration:none;
        }
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .topbar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 28px;
            }
        }