* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #fdfdfd;
            color: #222;
            line-height: 1.75;
            letter-spacing: 0.2px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 25px;
        }


        /* Hero Section */
        .hero {
            padding: 160px 0 30px;
            text-align: center;
            background-color: #f5f7fa;
        }

        .hero h1 {
            font-size: 36px;
            color: #0F3460;
            margin-bottom: 12px;
        }

        .hero p {
            font-size: 18px;
            color: #444;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Content */
        .content {
            padding: 50px 0;
        }

        .section {
            margin-bottom: 55px;
        }

        .section h2 {
            font-size: 26px;
            color: #0F3460;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e6ed;
        }

        .section h3 {
            font-size: 20px;
            color: #1a1a1a;
            margin: 28px 0 12px;
        }

        .ceo-message {
            font-size: 17px;
            color: #222;
            background: #f8f9fc;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid #0F3460;
        }

        .ceo-name {
            margin-top: 20px;
            font-weight: 600;
            color: #0F3460;
        }

        ul {
            padding-left: 22px;
            margin: 12px 0;
        }

        li {
            margin-bottom: 10px;
            font-size: 16px;
        }

        p {
            margin-bottom: 16px;
            font-size: 16px;
        }

        .pillar {
            margin-bottom: 35px;
        }

        .pillar-title {
            font-size: 22px;
            font-weight: 600;
            color: #0F3460;
            margin-bottom: 10px;
        }

        .pillar-sub {
            font-style: italic;
            color: #555;
            margin-bottom: 15px;
        }

        .living-code {
            background-color: #f5f7fa;
            padding: 35px;
            border-radius: 10px;
            font-size: 17px;
        }


        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }
            .section h2 {
                font-size: 22px;
            }
            .ceo-message {
                padding: 20px;
            }
        }
        
        .navbar {
            transition: all 0.3s ease;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        
        .navbar .nav-link {
            color: var(--dark-gray);
            position: relative;
            padding-bottom: 8px;
        }
        
        .navbar .logo-text {
            color: var(--dark-gray);
            transform: scale(0.8);
        }
        
        .navbar .logo-img {
            transform: scale(0.8);
        }
        
        .navbar .menu-toggle-icon {
            color: var(--dark-gray);
        }
        
        .navbar .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar .nav-link.active {
            color: var(--secondary-color);
        }
        
        /* Add triangle indicator for active nav links before scroll */
        .navbar:not(.scrolled) .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid white;
        }
        
        /* Keep orange line for scrolled navbar */
        .navbar.scrolled .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--secondary-color);
        }