* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.luggage-tag {
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ecf0f1;
    margin-bottom: 20px;
}

.luggage-pic {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 30px;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-label {
    font-weight: bold;
    min-width: 120px;
    color: #7f8c8d;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-call {
    background-color: #2ecc71;
    color: white;
}

.btn-email {
    background-color: #e74c3c;
    color: white;
}

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

.language-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.language-selector button {
    padding: 8px 16px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (min-width: 600px) {
    .profile-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    
    .profile-details {
        flex: 1;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ... (previous styles remain the same) ... */

.language-selector {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.language-selector button {
    padding: 5px 10px 5px 30px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 40px;
    height: 30px;
    position: relative;
    font-size: 12px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.language-selector button:hover {
    background-color: #2c3e50;
}

/* Country flags for each language */
.language-selector button[onclick*="'en'"] {
    background-image: url('https://flagcdn.com/w20/gb.png');
}
.language-selector button[onclick*="'tr'"] {
    background-image: url('https://flagcdn.com/w20/tr.png');
}
.language-selector button[onclick*="'fr'"] {
    background-image: url('https://flagcdn.com/w20/fr.png');
}
.language-selector button[onclick*="'de'"] {
    background-image: url('https://flagcdn.com/w20/de.png');
}
.language-selector button[onclick*="'ar'"] {
    background-image: url('https://flagcdn.com/w20/sa.png'); /* Using Saudi flag for Arabic */
}
.language-selector button[onclick*="'es'"] {
    background-image: url('https://flagcdn.com/w20/es.png');
}

/* RTL adjustments for Arabic */
[lang="ar"] {
    direction: rtl;
    text-align: right;
}

[lang="ar"] .info-item {
    flex-direction: row-reverse;
}

[lang="ar"] .info-label {
    min-width: 80px;
    margin-left: 10px;
    margin-right: 0;
}

[lang="ar"] .language-selector button {
    padding: 5px 30px 5px 10px;
    background-position: right 5px center;
}