/* Base Reset */

.logo {
  float: left;
  font-size: 22px;
  font-weight: bold;
  font-style: normal;
  height: 34px;
  line-height: 34px;
  background-color: black;
  padding: 0 8px;
  border-radius: 6px;
  margin: 0;
}
.logo a {
  color: white;
}
.country-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.country-list span {
  background-color: #e6f0ff;
  color: #1a3e72;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 1em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.country-list span:hover {
  transform: scale(1.05);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}

/* Headings */
h1 {
  text-align: center;
  font-size: 2.8em;
  color: #1a3e72;
  margin-bottom: 50px;
}

h2 {
  font-size: 1.6em;
  color: #215f9e;
  margin-bottom: 10px;
}

/* Section */
section {
  background-color: #ffffff;
  padding: 25px 30px;
  margin: 30px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

section:hover {
  transform: translateY(-2px);
}

/* Paragraph */
p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
a.button {
  display: inline-block;
  background-color: #1a73e8;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

a.button:hover {
  background-color: #1558b0;
  transform: translateY(-1px);
}
