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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.lang-link {
    display: inline-block;
    font-size: 1.8em;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    color: #1e3c72;
    margin: 40px 0 20px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 20px;
}

.mission {
    font-size: 1.1em;
    font-style: italic;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #2a5298;
    border-radius: 4px;
}

.value-item h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

ul {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e3c72;
}

.update-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
}

.highlight {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    header {
        padding: 40px 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .lang-link {
        font-size: 1.5em;
        padding: 6px 10px;
    }
    
    section {
        padding: 20px;
    }
}