  :root {
            --main-color: #0056b3; 
            --accent-color: #ff6b00; 
            --dark-color: #0d1b2a;
            --light-bg: #f8fbff;
            --white: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
            --gradient: linear-gradient(135deg, var(--main-color), #003d80);
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.8;
            scroll-behavior: smooth;
        }

      
        /* --- Global Helpers --- */
        .section-padding { padding: 100px 0; }
        .bg-dark-custom { background-color: var(--dark-color); color: white; }
        .text-accent { color: var(--accent-color) !important; }
        
        .btn-custom {
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        .btn-main { background: var(--main-color); color: white; box-shadow: 0 4px 15px rgba(0,86,179,0.3); }
        .btn-main:hover { transform: translateY(-3px); background: var(--dark-color); color: white; }

        .section-title { margin-bottom: 70px; text-align: center; }
        .section-title h2 { font-weight: 900; font-size: 2.5rem; color: var(--dark-color); margin-bottom: 20px; }
        .section-title span { color: var(--main-color); }
        .title-line { width: 100px; height: 5px; background: var(--accent-color); margin: 0 auto; border-radius: 10px; }

        /* --- Hero Section Responsive --- */
        .hero-section {
            min-height: 60vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at top right, #eef5ff 0%, #ffffff 100%);
            position: relative;
        }
        .hero-image {
            max-width: 100%;
            height: auto;
            animation: floatImage 4s ease-in-out infinite;
        }
        @keyframes floatImage {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        /* Responsive Mobile First: Image Top, Text Bottom */
        @media (max-width: 991px) {
            .responsive-row { flex-direction: column !important; text-align: center; }
            .responsive-row .col-lg-6:first-child { order: 2; margin-top: 30px; } /* Text */
            .responsive-row .col-lg-6:last-child { order: 1; } /* Image */
            
            .section-title.text-start { text-align: center !important; }
            .title-line.ms-auto { margin-right: auto !important; }
        }
        
        @media (min-width: 992px) {
            .hero-row { flex-direction: row-reverse; }
            .hero-content { text-align: right; }
        }

        /* --- Concept Section --- */
        .concept-card {
            background: white;
            padding: 40px;
            border-radius: 30px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .concept-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--accent-color);
        }
        .concept-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        /* --- Comparison Section --- */
        .compare-box {
            border-radius: 20px;
            padding: 30px;
            height: 100%;
        }
        .bad-hosting { background: #fff5f5; border: 2px dashed #ff4d4d; }
        .good-hosting { background: #f5fff6; border: 2px solid #28a745; position: relative; }
        .moqy-badge {
            position: absolute; top: -15px; left: 20px; background: var(--accent-color); color: white;
            padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem;
        }

        /* --- Server Anatomy (The Image Design) --- */
        .anatomy-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            transition: var(--transition);
            height: 100%;
        }
        .anatomy-card:hover {
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }
        .anatomy-card i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        .layer-item {
            background: rgba(0, 86, 179, 0.1);
            border-right: 4px solid var(--main-color);
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
        }
        .layer-item:hover {
            background: var(--main-color);
            padding-right: 30px;
        }

        /* --- Pricing Philosophy --- */
        .price-philosophy {
            background: var(--gradient);
            color: white;
            border-radius: 40px;
            padding: 60px;
        }

        /* --- FAQ --- */
        .accordion-button:not(.collapsed) { background-color: var(--main-color); color: white; }
        