        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            font-style: italic;
        }

        .navbar-logo span {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            font-style: normal;
        }

        .navbar-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .navbar-menu li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .navbar-menu li a:hover {
            color: #a3e635;
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .navbar-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }

        .navbar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .navbar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* DC Facilities Section */
        .dc-section {
            background: linear-gradient(135deg, #000000 0%, #0d2818 50%, #1a3d2b 100%);
            min-height: 100vh;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .dc-decorative-circle {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border: 30px solid rgba(163, 230, 53, 0.1);
            border-radius: 50%;
            z-index: 0;
        }

        .dc-decorative-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border: 20px solid rgba(163, 230, 53, 0.05);
            border-radius: 50%;
        }

        .dc-decorative-bars {
            position: absolute;
            top: 100px;
            right: 50px;
            display: flex;
            gap: 8px;
            z-index: 1;
        }

        .dc-bar {
            width: 30px;
            height: 80px;
            background: rgba(163, 230, 53, 0.15);
            transform: skewY(-20deg);
        }

        .dc-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .dc-left-section {
            padding: 40px 0;
        }

        .dc-title {
            color: white;
            font-size: 80px;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 5px;
        }

        .dc-subtitle {
            color: #a3e635;
            font-size: 80px;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 50px;
        }

        .dc-facility-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .dc-facility-item {
            background: #a3e635;
            color: #000;
            padding: 20px 35px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
        }

        .dc-facility-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(163, 230, 53, 0.4);
        }

        .dc-checkmark {
            width: 30px;
            height: 30px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a3e635;
            font-size: 20px;
            flex-shrink: 0;
        }

        .dc-right-section {
            padding: 40px;
        }

        .dc-description {
            color: white;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: justify;
        }

        .dc-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .dc-rounded-image {
            width: 100%;
            height: 300px;
            border-radius: 80px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(163, 230, 53, 0.2);
        }

        .dc-rounded-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dc-certification-note {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            line-height: 1.6;
            margin-top: 20px;
            font-style: italic;
        }

        /* Power Facilities Section */
        .power-section {
            background: linear-gradient(135deg, #0a3d1f 0%, #1a5c35 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .power-film-strip {
            position: absolute;
            top: 50px;
            left: 30px;
            opacity: 0.1;
            z-index: 0;
        }

        .power-film-frame {
            width: 40px;
            height: 60px;
            border: 3px solid #a3e635;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .power-corner-logo {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.5;
        }

        .power-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .power-left-section {
            position: relative;
        }

        .power-image-container {
            position: relative;
        }

        .power-circle-frame {
            width: 450px;
            height: 450px;
            border: 8px solid #a3e635;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(163, 230, 53, 0.3);
            position: relative;
            margin: 0 auto;
        }

        .power-circle-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .power-decorative-circles {
            position: absolute;
            bottom: -20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .power-dec-circle {
            width: 30px;
            height: 30px;
            background: #a3e635;
            border-radius: 50%;
        }

        .power-dec-circle:nth-child(2) {
            width: 20px;
            height: 20px;
        }

        .power-right-section {
            padding: 40px;
        }

        .power-title {
            color: white;
            font-size: 72px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1;
        }

        .power-subtitle {
            color: #a3e635;
            font-size: 72px;
            font-weight: bold;
            margin-bottom: 50px;
            line-height: 1;
        }

        .power-facility-card {
            background: transparent;
            border: 2px solid #a3e635;
            border-radius: 40px;
            padding: 30px 40px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .power-facility-card:hover {
            background: rgba(163, 230, 53, 0.1);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(163, 230, 53, 0.2);
        }

        .power-facility-title {
            color: #a3e635;
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .power-facility-description {
            color: white;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .navbar-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transition: left 0.3s ease;
            }

            .navbar-menu.active {
                left: 0;
            }

            .navbar-toggle {
                display: flex;
            }

            .dc-section,
            .power-section {
                padding: 100px 20px 60px;
            }

            .dc-container,
            .power-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dc-title, .dc-subtitle {
                font-size: 48px;
            }

            .power-title, .power-subtitle {
                font-size: 52px;
            }

            .dc-facility-item {
                font-size: 14px;
                padding: 18px 25px;
            }

            .power-circle-frame {
                width: 320px;
                height: 320px;
            }

            .dc-rounded-image {
                height: 250px;
                border-radius: 50px;
            }

            .power-facility-card {
                padding: 20px 25px;
            }

            .power-facility-title {
                font-size: 18px;
            }

            .power-facility-description {
                font-size: 13px;
            }

            .dc-decorative-bars {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .navbar-logo {
                font-size: 20px;
            }

            .dc-title, .dc-subtitle {
                font-size: 36px;
            }

            .power-title, .power-subtitle {
                font-size: 40px;
            }

            .dc-facility-item {
                font-size: 12px;
                padding: 15px 20px;
                border-radius: 30px;
            }

            .dc-checkmark {
                width: 25px;
                height: 25px;
                font-size: 16px;
            }

            .power-circle-frame {
                width: 280px;
                height: 280px;
            }
        }

                /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #041904 0%, #072C07 100%);
            color: #fff;
            text-align: center;
        }

        .contact-info {
            margin-top: 2rem;
            font-size: 1.2rem;
        }

        .contact-info a {
            color: #4ade80;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #000;
            color: #fff;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Reset khusus untuk section satellite rooftop */
        #yudhistira-satellite-rooftop,
        #yudhistira-satellite-rooftop * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Section Satellite Rooftop Container */
        #yudhistira-satellite-rooftop {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a1e0d 0%, #1a3a1f 50%, #0f2612 100%);
            color: #fff;
            min-height: 100vh;
            padding: 140px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative circles background */
        #yudhistira-satellite-rooftop::before {
            content: '';
            position: absolute;
            top: 100px;
            right: -100px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 50px solid rgba(126, 217, 87, 0.03);
            pointer-events: none;
        }

        #yudhistira-satellite-rooftop::after {
            content: '';
            position: absolute;
            top: 150px;
            right: -50px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 40px solid rgba(126, 217, 87, 0.05);
            pointer-events: none;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-logo {
            position: absolute;
            top: -100px;
            right: 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: #7ed957;
            font-style: italic;
            z-index: 10;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-logo-subtitle {
            font-size: 0.6rem;
            letter-spacing: 3px;
            display: block;
            margin-top: -5px;
        }

        /* Hero Section with Image */
        #yudhistira-satellite-rooftop .satellite-rooftop-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-hero-content {
            position: relative;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-main-title {
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-subtitle {
            font-size: 1.8rem;
            font-weight: 900;
            color: #7ed957;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0;
            line-height: 1.2;
        }

        /* Hero Image */
        #yudhistira-satellite-rooftop .satellite-rooftop-hero-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-image-main {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 8px solid #7ed957;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(126, 217, 87, 0.3);
            position: relative;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-placeholder-main {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #666;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-placeholder-main svg {
            width: 150px;
            height: 150px;
            margin-bottom: 20px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-image-label {
            position: absolute;
            background: #fff;
            color: #1a3a1f;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 5;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-label-antenna {
            top: 20%;
            right: -10px;
        }

        /* Content Section Below */
        #yudhistira-satellite-rooftop .satellite-rooftop-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Left Section - Cards */
        #yudhistira-satellite-rooftop .satellite-rooftop-left {
            position: relative;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-cards-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-card {
            background: linear-gradient(135deg, #a8e063 0%, #7ed957 100%);
            border-radius: 30px;
            padding: 30px;
            border: 3px solid #1a3a1f;
            position: relative;
            overflow: hidden;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-card::before {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-card-title {
            font-size: 1.2rem;
            font-weight: 900;
            color: #1a3a1f;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-card-content {
            font-size: 0.95rem;
            color: #1a3a1f;
            line-height: 1.6;
            text-align: center;
            font-weight: 500;
        }

        /* Right Section - Specification */
        #yudhistira-satellite-rooftop .satellite-rooftop-right {
            position: relative;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-spec-card {
            background: linear-gradient(135deg, #a8e063 0%, #7ed957 100%);
            border-radius: 30px;
            padding: 35px 40px;
            border: 3px solid #1a3a1f;
            position: relative;
            height: 100%;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-spec-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: #1a3a1f;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 25px;
            letter-spacing: 1.5px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-spec-list {
            list-style: none;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-spec-list li {
            font-size: 0.95rem;
            color: #1a3a1f;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            line-height: 1.5;
            font-weight: 600;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-spec-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #1a3a1f;
            font-size: 1.5rem;
            line-height: 1;
            font-weight: 900;
        }

        /* Secondary Image Below */
        #yudhistira-satellite-rooftop .satellite-rooftop-image-secondary-wrapper {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-image-secondary {
            width: 100%;
            max-width: 400px;
            height: 250px;
            border-radius: 25px;
            border: 6px solid #7ed957;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(126, 217, 87, 0.3);
            position: relative;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-placeholder-secondary {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #666;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-placeholder-secondary svg {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        #yudhistira-satellite-rooftop .satellite-rooftop-label-petro {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: #fff;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            color: #1a3a1f;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Decorative wave */
        #yudhistira-satellite-rooftop .satellite-rooftop-wave {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(126, 217, 87, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            #yudhistira-satellite-rooftop .satellite-rooftop-hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-hero-image {
                order: -1;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            #yudhistira-satellite-rooftop {
                padding: 120px 20px 60px;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-main-title {
                font-size: 2.5rem;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-subtitle {
                font-size: 1.3rem;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-image-secondary {
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            #yudhistira-satellite-rooftop {
                padding: 100px 15px 40px;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-main-title {
                font-size: 2rem;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-subtitle {
                font-size: 1.1rem;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-card {
                padding: 20px;
            }

            #yudhistira-satellite-rooftop .satellite-rooftop-spec-card {
                padding: 25px;
            }
        }
