* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

.header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.header .subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

.logo {
  width: 200px;
  height: auto;
}

.img-worcop {
  max-width: 1000px;
}

.img-wopeace {
  width: 100px;
}

.img-photo {
  width: 300px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  background: white;
  margin: 2rem 0;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #1a44af;
  transition: transform 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.section-title {
  color: #1a44af;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #d4af37;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section p {
  font-size: 20px;
  font-family: "Calibri";
}

.icon {
  width: 40px;
  height: 40px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, #d4af37 0%, #d4af3793 100%);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  border: 2px solid #1a44af;
}

.highlight-box p {
  font-size: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #1a44af 0%, #1a44af8e 100%);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.country-tag {
  background: #1a44af;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
}

.success-box {
  background: #d4af37;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  border-left: 4px solid #1a44af;
}

.contact-box {
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 2rem 0;
}

.contact-box a {
  color: #1a44af;
  text-decoration: none;
  font-weight: bold;
}

.logo-section {
  text-align: center;
  margin: 2rem 0;
}

.worcop-badge {
  background: #1a44af;
  color: white;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

li {
  margin: 0.5rem 0;
}

strong {
  color: #1a44af;
}

.conclusion-box {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    rgba(255, 237, 78, 0.521) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #1a44af;
  margin: 2rem 0;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.ranking-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #1a44af;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
