        :root {
            --primary-color: #0f2a4a; /* Deep Navy for trust and legal credibility */
            --secondary-color: #c5a059; /* Gold for premium advisory quality */
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #ffffff;
/*            display: flex;
            flex-direction: column;
            min-height: 100vh;*/
        }

        /* Header & Navigation */
        header {
            background-color: var(--primary-color);
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo {
            color: var(--text-light);
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Language Selector Styling */
        .lang-selector {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--secondary-color);
            /*padding: 8px 12px;*/
            border-radius: 4px;
            cursor: pointer;
            height: 34px;
            line-height: 34px;
            width: 100px;
            font-size: 14px;
            outline: none;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lang-selector{height: 30px; line-height: 30px; width: 75px; font-size: 12px; margin: 2px 0px;}
        }

        .lang-selector option {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .cta-btn {
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .nav-btn {
            background-color: var(--secondary-color);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.3s;
            height: 34px;
            line-height: 34px;
            width: 100px;
            font-size: 14px;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-btn{height: 30px; line-height: 30px; width: 75px; font-size: 12px; margin-left: 2px;}
            .cta-btn{padding: 5px 10px;}            
        }

        .cta-btn:hover {
            background-color: #b38f48;
        }

        /* Revert Button Link Component */
        .back-btn {
            background-color: transparent;
            color: var(--text-light);
            /*padding: 10px 15px;*/
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 14px;
            transition: all 0.3s;
            height: 34px;
            line-height: 34px;
            width: 100px;
            font-size: 14px;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .back-btn{height: 30px; line-height: 30px; width: 75px; font-size: 12px; margin: 2px 0px; }
        }

        .back-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--text-light);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(15, 42, 74, 0.88), rgba(15, 42, 74, 0.88)), url('https://images.unsplash.com/photo-1450133064473-71024230f91b?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--text-light);
            padding: 0 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero{height: 50vh;}            
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.4;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
        }

        /* Section Settings */
        section {
            padding: 80px 10%;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 15px auto 0;
        }

        /* Challenges Section */
        .challenges {
            background-color: var(--bg-light);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .challenge-card {
            background: #fff;
            padding: 30px;
            border-left: 5px solid #e74c3c;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .challenge-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 40px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* Strengths Section */
        .strengths {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .strengths .section-title {
            color: var(--text-light);
        }

        .strengths-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .strength-number {
            font-size: 48px;
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            text-align: center;
            background-color: var(--bg-light);
        }

        .contact p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .contact .cta-btn {
            font-size: 20px;
            padding: 15px 40px;
        }

        /* Footer */
        footer {
            background-color: #0a1d33;
            color: #7f8c8d;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /*header { flex-direction: column; gap: 15px; padding: 15px 5%; }*/
            header { padding: 15px 2%; }
            .logo { font-size: 18px; margin-right: 3px;}
            .nav-right { gap: 5px;}
            .hero h1 { font-size: 24px; }
            .hero p { font-size: 16px; }
            section { padding: 50px 5%; }
        }