:root {
  --primary-blue: #043045;
  --primary-red: #EB1B2C;
  --light-gray: #f8f9fa;
}

/* Base */
body {
  font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-red);
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #c41220;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(235, 27, 44, 0.3);
}

.btn-outline-light {
  color: white;
  border-color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-red);
}

/* Topbar */
.topbar {
  background-color: var(--primary-blue);
  font-size: 1rem;
}
.country-flag {
  height: 30px;
  margin: 0 5px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}
.nav-link {
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  padding: 8px 0;
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}
.nav-link:hover {
  color: var(--primary-red);
}

/* Hero */
.hero {
  position: relative;
}
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero .container {
  z-index: 1;
}

/* Footer */
footer {
  background-color: #222;
  color: rgba(255, 255, 255, 0.7);
}
.footer-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-red);
}
.social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}
.social-links a:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}