/* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            background-color: #3a4a5c;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-content {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 40px 60px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            color: #2c3e7e;
            font-size: 36px;
            font-weight: bold;
        }

           /* Tracking Section */

        .tracking-content {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 35px 50px;
            border-radius: 5px;
            text-align: left;
            box-shadow: 0 2px 15px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
            max-width: 550px;
        }

        .tracking-content h1 {
            color: #c62828;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .tracking-input-container {
            display: flex;
            gap: 0;
            margin-bottom: 8px;
        }

        .tracking-input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid #ccc;
            border-right: none;
            font-size: 15px;
            outline: none;
            border-radius: 0;
        }

        .tracking-input::placeholder {
            color: #aaa;
        }

        .tracking-btn {
            background-color: #d32f2f;
            color: white;
            border: none;
            padding: 14px 25px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 0;
        }

        .tracking-btn:hover {
            background-color: #b71c1c;
        }