/* Global Reset & Typography */
body {
    font-family: 'Inter', sans-serif;
    /* Soft background: Professional blue-grey */
    background-color: #f4f7fa; 
    margin: 0;
    color: #334155;
}

/* Professional Header with Blue/Purple Gradient */
.header-nav {
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Language Dropdown Styling */
.language-dropdown {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 30px 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all 0.2s ease;
}

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

.language-dropdown option {
    color: #1e293b;
    background: white;
}

/* Main Content centering */
main {
    min-height: 70vh;
}

/* Footer Styling */
.footer {
    background-color: white;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    nav h2 {
        font-size: 2.8rem !important;
    }

   
    
    .language-dropdown {
        font-size: 0.8rem;
        padding: 4px 25px 4px 10px;
    }
}