* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 10px 20px;
    border: 2px solid #3498db;
    background-color: transparent;
    color: #3498db;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #3498db;
    color: white;
}

.lang-btn.active {
    background-color: #3498db;
    color: white;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-section {
    flex: 1;
    min-width: 300px;
}

.photo-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.info-card {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    background-color: #e3f2fd;
    color: #3498db;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.info-text h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-text p {
    color: #555;
    font-size: 1.1rem;
}

.photo-frame {
    width: auto;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 8px solid white;
    background-color: #f1f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    text-align: center;
    color: #7f8c8d;
    padding: 20px;
}

.photo-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.hobby-icon {
    color: #e74c3c;
}

.footer {
    margin-top: 40px;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #eee;
    width: 100%;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .language-switcher {
        margin-top: 20px;
    }
    
    .photo-frame {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.2rem;
    }
}