/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */
:root {
  --primary: #dc3545;
  --primary-light: rgba(220, 53, 69, 0.1);
  --secondary: #6c757d;
  --success: #25d366;
  --success-dark: #128C7E;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

/* ... [rest of your existing styles] ... */

/* =============================================
   COUNTRIES SCROLLER
   ============================================= */
.countries-scroll-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.countries-scroll {
  animation: scroll 25s linear infinite;
  white-space: nowrap;
  padding: 10px 0;
}

.country-item {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-right: 25px;
}

.flag-img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-right: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }

  .hero-section {
    height: auto;
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }
}