* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f0d0c8;
        }

        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;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

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

        .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;
        }

        .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;
        }

        .language-select select:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .language-select select option {
            background: #2a2a2a;
            color: white;
            font-size: 14px;
        }

        .logo {
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .language-select {
            position: relative;
            margin-left: 15px;
            display: inline-block;
        }

        .language-select select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 5px 25px 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            outline: none;
        }

        .language-select::after {
            content: '▼';
            font-size: 10px;
            color: white;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .language-select select:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .language-select select option {
            background: #4a4a4a;
            color: white;
        }

        .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;
        }


        .team-container {
            padding: 80px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            display: flex;
            gap: 40px;
            margin-bottom: 80px;
            align-items: flex-start;
        }

        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
        }

        .member-info {
            flex: 1;
        }

        .member-role {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        .member-details {
            line-height: 1.8;
            color: #444;
        }

        .member-details p {
            margin-bottom: 8px;
        }

        .member-details strong {
            font-weight: 600;
        }

        .member-quote {
            margin-top: 15px;
            font-style: italic;
            color: #666;
        }

        footer {
            background-color: #4a4a4a;
            color: white;
            padding: 30px 50px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5em;
            }

            .team-member {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .member-photo {
                width: 120px;
                height: 120px;
            }
        }
        /*really?*/