/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Noto Color Emoji for flags */
.country-flag,
.country-flag-btn {
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== COMMON SECTION STYLES ===== */
.section {
    padding: 80px 20px;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-main {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-subtitle-main {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}
