/* ========================================
   BANKOMAT MORAVSKE TOPLICE - STILI
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #e6f2ff;
    --secondary-color: #28a745;
    --secondary-dark: #1e7e34;
    --accent-color: #ffc107;
    --danger-color: #dc3545;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #888;
    --bg-color: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset za sticky header */
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-progress {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background: #e6ac00;
    color: var(--text-color);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loader::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   MAIN CONTENT & SECTIONS
   ======================================== */

.main {
    padding: 40px 0;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ========================================
   INFO GRID
   ======================================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* ========================================
   NEWS SECTION
   ======================================== */

.news-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.news-card {
    background: var(--primary-light);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.news-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ========================================
   FORM
   ======================================== */

.form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--danger-color);
}

.required {
    color: var(--danger-color);
}

.error-message {
    display: block;
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Focus state for accessibility */
.checkbox-label input:focus + .checkmark {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
}

.required-checkbox {
    background: var(--primary-light);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.form-notice p {
    margin: 0;
    font-size: 0.9rem;
}

/* Form Success/Error */
.form-success,
.form-error {
    text-align: center;
    padding: 40px 20px;
}

.success-icon,
.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.success-icon {
    background: var(--secondary-color);
    color: white;
}

.error-icon {
    background: var(--danger-color);
    color: white;
}

.gdpr-token-box {
    background: var(--bg-color);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    text-align: left;
}

.gdpr-token-box code {
    display: block;
    background: var(--text-color);
    color: var(--accent-color);
    padding: 15px;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 10px 0;
}

.token-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   SIGNATURES LIST
   ======================================== */

.signatures-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.signature-item {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signature-name {
    font-weight: 600;
    color: var(--text-color);
}

.signature-city {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.signature-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

/* ========================================
   STATISTICS SECTION
   ======================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stats-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stats-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.stat-highlight {
    text-align: center;
    margin: 20px 0;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.benefits-list,
.atm-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.atm-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child,
.atm-list li:last-child {
    border-bottom: none;
}

.atm-note {
    margin-top: 15px;
    padding: 15px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

/* ========================================
   VISITOR STATS
   ======================================== */

.visitor-stat {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.visitor-stat:last-child {
    border-bottom: none;
}

.stat-label-small {
    color: var(--text-muted);
}

.stat-value {
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-color);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[hidden] {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-color);
}

/* ========================================
   STORIES SECTION
   ======================================== */

.stories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.story-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.story-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-left: 4px solid var(--accent-color);
}

.story-card.featured blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
}

.story-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

.story-card blockquote {
    margin: 0 0 20px 0;
    padding: 20px 0 0 10px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.story-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.story-author div {
    display: flex;
    flex-direction: column;
}

.story-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.story-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stories-section {
        padding: 30px 20px;
    }
    
    .story-card.featured {
        grid-column: auto;
    }
    
    .story-card.featured blockquote {
        font-size: 1rem;
    }
}

/* ========================================
   GDPR PAGE STYLES
   ======================================== */

.gdpr-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.gdpr-content h2 {
    color: var(--primary-color);
    text-align: left;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.gdpr-content h2:first-child {
    margin-top: 0;
}

.gdpr-content h3 {
    color: var(--text-color);
    margin-top: 25px;
}

.gdpr-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.gdpr-content li {
    margin-bottom: 8px;
}

.gdpr-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.gdpr-content th,
.gdpr-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-content th {
    background: var(--primary-light);
    font-weight: 600;
}

.gdpr-tool {
    background: var(--bg-color);
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.gdpr-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.gdpr-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.gdpr-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* GDPR Input - UUID format */
#gdpr-input {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transition: var(--transition);
}

#gdpr-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.15), inset 0 2px 4px rgba(0,0,0,0.05);
}

#gdpr-input::placeholder {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: none;
}

.gdpr-result {
    margin-top: 15px;
}

.gdpr-result .data-box {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.gdpr-result .data-box h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.gdpr-result .success-message {
    color: var(--secondary-color);
    font-weight: 600;
}

.gdpr-result .error-message {
    color: var(--danger-color);
}

.gdpr-tool input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 15px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
    }

    .form-container,
    .news-section,
    .gdpr-content {
        padding: 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* ========================================
   BUTTON LOADER
   ======================================== */

.btn-loader {
    display: none;
}

.btn-loader:not([hidden]) {
    display: inline-flex;
}

/* ========================================
   HIDDEN ELEMENTS FIX
   ======================================== */

[hidden] {
    display: none !important;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */

.language-selector {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
}

.language-selector:hover {
    border-color: var(--primary-color);
}

.language-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}
