* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #000000, #202020);
  color: #333;
  min-height: 100vh;
  padding: 20px 20px 40px;
}

/* ==================== HEADER (outside container) ==================== */
.site-header {
  max-width: 1500px;
  margin: 0 auto 30px auto;
  padding: 20px 0;
  color: black;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.65rem;
  font-weight: 700;
  color: #667eea;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  margin-left: 0;
}
.logo-area img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lang-dropdown {
  margin-right: 0;
}
.lang-dropdown select {
  padding: 11px 38px 11px 16px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ffffff;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23667eea'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  min-width: 170px;
  backdrop-filter: blur(4px);
  box-shadow: 0px 3px 10px #000000;
}
.lang-dropdown select:focus {
  outline: none;
  border-color: #5a6fd8;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.25);
}

@media (max-width: 560px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .logo-area {
    margin-left: 0;
  }
  .lang-dropdown {
    margin-right: 0;
  }
}

/* ==================== YOUR ORIGINAL STYLES (unchanged) ==================== */
div[class="b"] {
  text-align: center;
  position: relative;
  z-index: 9999;
  font-size: 16px;
  margin-top: 100px;
  font-weight: 600;
}
a {
  text-decoration: none;
}

.description {
    color: white;
    text-align: left;
    margin-top: 100px;
    padding: 100px 300px;
    min-height: 0;
}

/* ONLY RESPONSIVE FIX FOR .description — keeps your exact margins */
@media (max-width: 1400px) {
  .description { padding: 100px 200px; }
}
@media (max-width: 1200px) {
  .description { padding: 100px 150px; }
}
@media (max-width: 992px) {
  .description { padding: 100px 100px; }
}
@media (max-width: 768px) {
  .description { padding: 100px 60px; }
}
@media (max-width: 560px) {
  .description { 
    padding: 100px 30px;   /* Keeps your huge top/bottom padding */
  }
}
@media (max-width: 400px) {
  .description { 
    padding: 100px 20px;
  }
}