 :root {
            --primary: #41aeab; /* Teal from Skyrise repo */
            --secondary: #fcec14; /* Yellow from Skyrise repo */
            --dark: #2c3e50;
            --light-bg: #e3f7fd;
        }
        
        body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

        /* Marquee Styles */
        .marquee-container {
            background: #2c3e50;
            color: white;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            border-bottom: 2px solid var(--secondary);
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Blinking Animation for Status Boxes */
        @keyframes blink-animation {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.02); }
            100% { opacity: 1; transform: scale(1); }
        }
        .blink-box {
            animation: blink-animation 2s infinite;
        }

        /* Tick List Style */
        .tick-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        .tick-icon {
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            max-width: 600px;
            border-radius: 10px;
            position: relative;
            animation: slideDown 0.5s ease;
        }
        @keyframes slideDown {
            from { top: -100px; opacity: 0; }
            to { top: 0; opacity: 1; }
        }

        /* Reengus-style specific elements */
        .section-title {
            position: relative;
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title h3 {
            font-weight: 700;
            font-size: 24px;
            text-transform: uppercase;
            color: #333;
            display: inline-block;
            background: white;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            z-index: 0;
        }

        .highlight-card {
            background: white;
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        } 