  :root {
            --primary-blue: #006994;
            --dark-blue: #0a192f;
            --navy: #172a45;
            --light-navy: #303f60;
            --lightest-navy: #465881;
            --teal: #64ffda;
            --light-teal: #88ffdf;
            --lightest-teal: #a8ffeb;
            --white: #e6f1ff;
            --light-gray: #ccd6f6;
            --gray: #8892b0;
        }
        
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--dark-blue);
            color: var(--white);
            line-height: 1.6;
            background-image: url('static/picture/malaysia-pattern.png');
            background-attachment: fixed;
            background-size: 300px;
            background-blend-mode: overlay;
        }
        #wrapper {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--navy);
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
            position: relative;
            overflow: hidden;
        }
        .center {
            width: 96%;
            margin: 0 auto;
            padding: 25px 0;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue), #003366);
            padding: 25px 0;
            text-align: center;
            border-bottom: 3px solid var(--teal);
            position: relative;
        }
        header:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(90deg, #cc0000 33%, white 33%, white 66%, #006600 66%);
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--teal);
            font-weight: 600;
            margin-top: 0;
        }
        h2 {
            font-size: 28px;
            margin-bottom: 25px;
            line-height: 1.3;
            position: relative;
            display: inline-block;
        }
        h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--teal);
        }
        .red {
            color: #ff6b6b;
        }
        .purple {
            color: #9b59b6;
        }
        .green {
            color: var(--teal);
        }
        .blue {
            color: #52a8e7;
        }
        a {
            color: var(--light-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--teal);
            text-decoration: underline;
        }
        figure {
            margin: 30px auto;
            text-align: center;
            position: relative;
            max-width: 800px;
        }
        figure:before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--teal);
            border-radius: 8px;
            z-index: -1;
            opacity: 0.3;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: translateY(-5px);
        }
        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
        }
        .contact-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-blue), #004080);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            transition: all 0.3s;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(100, 255, 218, 0.3);
            min-width: 200px;
            justify-content: center;
        }
        .contact-btn:hover {
            background: linear-gradient(135deg, #0077b6, #005099);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            color: white;
        }
        .contact-btn img {
            margin-right: 12px;
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
        }
        .ul_list {
            list-style-type: none;
            padding-left: 0;
        }
        .ul_list li {
            padding: 12px 0;
            position: relative;
            padding-left: 30px;
            font-size: 17px;
            color: var(--light-gray);
        }
        .ul_list li:before {
            content: "•";
            color: var(--teal);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 24px;
            line-height: 1;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid var(--light-navy);
            position: relative;
        }
        section:nth-child(even) {
            background-color: rgba(23, 42, 69, 0.7);
        }
        footer {
            background: linear-gradient(135deg, #003366, #001a33);
            color: var(--gray);
            padding: 40px 0 30px;
            text-align: center;
            font-size: 15px;
            border-top: 3px solid var(--teal);
            position: relative;
        }
        footer:before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(90deg, #cc0000 33%, white 33%, white 66%, #006600 66%);
        }
        .testimonial {
            background-color: var(--light-navy);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            position: relative;
            border-left: 4px solid var(--teal);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .testimonial:before {
            content: """;
            font-size: 80px;
            color: var(--teal);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            left: 15px;
            font-family: serif;
        }
        .testimonial-author {
            font-weight: bold;
            color: var(--light-teal);
            margin-top: 20px;
            text-align: right;
            font-style: italic;
        }
        .malaysia-flag {
            display: inline-block;
            width: 24px;
            height: 15px;
            background: linear-gradient(0deg, #cc0000, #cc0000 33%, white 33%, white 66%, #006600 66%, #006600);
            margin-right: 8px;
            vertical-align: middle;
            border-radius: 2px;
            box-shadow: 0 0 5px rgba(0,0,0,0.2);
        }
        .disclaimer {
            font-size: 13px;
            color: var(--gray);
            margin-top: 25px;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-links a {
            color: var(--gray);
            margin: 0;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .footer-links a:hover {
            color: var(--teal);
            background-color: rgba(100, 255, 218, 0.1);
            text-decoration: none;
        }
        .highlight-box {
            background-color: var(--light-navy);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid var(--teal);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .malaysia-icon {
            position: absolute;
            opacity: 0.05;
            z-index: 0;
        }
        .malaysia-icon-1 {
            top: 50px;
            right: 50px;
            width: 150px;
            height: 150px;
            background-image: url('static/picture/petronas-towers-silhouette.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
        .malaysia-icon-2 {
            bottom: 100px;
            left: 50px;
            width: 120px;
            height: 120px;
            background-image: url('static/picture/malaysia-hibiscus.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
        .hero-banner {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0, 50, 100, 0.7), rgba(0, 80, 100, 0.7)), 
                        url('static/picture/klcc-background.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        .hero-content h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        .malaysia-badge {
            display: inline-flex;
            align-items: center;
            background-color: rgba(0,0,0,0.3);
            padding: 8px 15px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            margin-top: 20px;
            font-size: 14px;
        }