* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #f5f5dc;
        }
        
        nav {
            background-color: rgba(100, 100, 100, 0.56);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            padding: 5px 15px;
            border-radius: 4px;
        }

        nav a:hover {
            color: rgba(255, 255, 255, 0.8);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            color: white;
            font-weight: bold;
            font-size: 16px;
            padding: 5px 15px;
            margin-right: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .language-select {
            position: relative;
            margin-left: 20px;
        }

        .language-select select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            padding: 6px 30px 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .language-select::after {
            content: '▼';
            font-size: 8px;
            color: rgba(255, 255, 255, 0.8);
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .language-select:hover::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .language-select select:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .language-select select:focus {
            border-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
        }

        .language-select select option {
            background: #2a2a2a;
            color: white;
            padding: 10px;
            font-size: 14px;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 50px;
            padding-top: 104px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
        }
        
        .hero h1 {
            /* Font Style */
        font-family: 'Roboto Mono', monospace;
            /* Bold (Regular) */
        font-weight: 400;
            /* Size */
        font-size: 120px;
            /* Line height */
        line-height: 110%;
            /* Letter spacing (-3%) */
        letter-spacing: -0.03em;
            /* Italics (implied False) */
        font-style: normal;
        }

        .hero p {
            font-size: 1.2em;
            /* Font Style */
            font-family: 'Roboto Mono', monospace;
            /* Bold (Regular) */   
            font-weight: 400;
            /* Line height */
            line-height: 140%;
            /* Letter spacing (-3%) */
            letter-spacing: -0.03em;
            /* Italics (implied False) */
            font-style: normal;
        }
        
        /* Content Container */
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 50px;
        }
        
        /* Introduction Section */
        .intro-section {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            align-items: flex-start;
        }
        
        .intro-text {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .intro-text p {
            font-size: 1.15em;
            line-height: 1.8;
            color: #444;
        }
        
        .intro-image {
            width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        /* Info Section */
        .info-section {
            display: flex;
            gap: 30px;
            margin-top: 60px;
            align-items: flex-start;
        }
        
        .info-image {
            width: 500px;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        .info-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .info-item {
            margin-bottom: 30px;
        }
        
        .info-item h3 {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }
        
        .info-item p {
            font-size: 1em;
            line-height: 1.7;
            color: #444;
        }
        
        /* Footer */
        footer {
            background-color: #4a4a4a;
            color: white;
            padding: 30px 50px;
        }
        
        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2.5em;
            }
            
            .intro-section,
            .info-section {
                flex-direction: column;
            }
            
            .intro-image,
            .info-image {
                width: 100%;
            }
        }