/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --danger: #dc2626;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Update Banner */
.update-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.update-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    z-index: 1001;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo svg {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%), 
                url('images/hero-background.jpg') center/cover no-repeat;
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.data-update-info {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Filters */
.filters {
    background-color: var(--bg-primary);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 70px;
    z-index: 999;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.filter-tabs::-webkit-scrollbar {
    height: 4px;
}

.filter-tabs::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 2px;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Locations Grid */
.locations {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .locations {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .locations {
        padding: 0.5rem 0;
    }
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease;
}

.location-card {
    background-color: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
}

.location-image .flag-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    line-height: 1;
    width: 100%;
    height: 100%;
}

.location-content {
    padding: 1.5rem;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-region {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.location-flag {
    font-size: 2rem;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: none;
}

.modal-content {
    position: relative;
    background-color: var(--bg-primary);
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: sticky;
    top: 1rem;
    right: 1rem;
    float: right;
    font-size: 2rem;
    background: var(--bg-primary);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-flag {
    font-size: 4rem;
}

.modal-title-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.modal-title-section p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-section {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section ul {
    list-style: none;
}

.info-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.info-section li:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Compare Section */
.compare-section {
    padding: 2.5rem 0;
    background-color: var(--bg-primary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.compare-container {
    max-width: 1000px;
    margin: 0 auto;
}

.compare-selectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.compare-select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.compare-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.compare-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compare-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-card .stat {
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 2.5rem 0;
    background-color: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ad Section - Now visible on all devices */
.mobile-ad-section {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    background: var(--bg-secondary);
}

.ad-container {
    max-width: 728px;
    width: 100%;
    min-height: 90px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-container .adsbygoogle {
    display: inline-block !important;
    width: 728px;
    height: 90px;
}

@media (max-width: 768px) {
    .mobile-ad-section {
        padding: 10px 0;
    }
    
    .ad-container {
        max-width: 320px;
        min-height: 100px;
        padding: 6px;
        margin: 10px auto;
    }
    
    .ad-container .adsbygoogle {
        width: 320px !important;
        height: 100px !important;
    }
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.powered-by a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: white;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Mobile and tablets */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .navbar {
        padding: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        margin-bottom: 0;
        background-color: var(--bg-primary);
        position: sticky;
    }

    .nav-content {
        padding: 0.75rem 0;
        min-height: auto;
    }
    
    .filters {
        top: 60px;
    }

    .mobile-menu-btn {
        display: flex;
        padding: 8px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 0 3rem;
        margin-top: 0;
    }

    .data-update-info {
        font-size: 0.85rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title-section h2 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .compare-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .compare-selectors {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .compare-select {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .compare-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compare-card {
        padding: 1.5rem;
    }
    
    .compare-card h3 {
        font-size: 1.25rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section ul {
        padding: 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .navbar {
        position: sticky;
        top: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 0;
        background-color: var(--bg-primary);
        position: sticky;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .nav-content {
        padding: 0.5rem 0;
        min-height: 50px;
    }
    
    .filters {
        top: 50px;
    }

    .hero {
        padding: 1.5rem 0 2.5rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .search-input {
        font-size: 0.9rem;
        padding: 0.875rem 0.875rem 0.875rem 3rem;
    }

    .filter-tabs {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        min-width: auto;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .location-card {
        border-radius: 10px;
    }

    .location-image {
        height: 140px;
    }

    .location-content {
        padding: 0.875rem;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-region {
        font-size: 0.75rem;
    }

    .location-flag {
        font-size: 1.5rem;
    }

    .location-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .location-stats > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .location-stats span {
        font-size: 0.7rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-value {
        font-size: 0.85rem;
    }

    .location-tags {
        gap: 0.3rem;
    }

    .tag {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-btn {
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links a {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
        padding: 0 1rem;
    }
    
    .compare-section {
        padding: 1.5rem 0;
    }
    
    .compare-container {
        padding: 0 0.5rem;
    }
    
    .compare-selectors {
        gap: 0.5rem;
    }
    
    .compare-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .compare-results {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .compare-card {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .compare-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .compare-card .stat {
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }

    .compare-card,
    .about-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }

    .modal-content {
        margin: 0.5rem;
        border-radius: 10px;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .modal-title-section h2 {
        font-size: 1.5rem;
    }

    .modal-flag {
        font-size: 3rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .filters,
    .search-box,
    .footer,
    .modal-close {
        display: none;
    }

    .modal-content {
        box-shadow: none;
        max-height: none;
    }
}
