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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  height: 100vh; 
  background: linear-gradient(121deg, #f2f4ff 45.31%, #cddeff);
  box-sizing: content-box;
}

.button {
  align-items: center;
  background-color: #2e62d6;
  border: none;
  border-radius: 4.625rem;
  box-sizing: border-box !important;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  gap: .75rem;
  height: 3rem;
  justify-content: center;
  line-height: normal;
  padding: .75rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  width: max-content;
  margin: 5px;
  transition: background 0.3s;
}

.button:hover {
  background-color: #1e52c6;
}

.cookie-settings-container {
  width: 100vw;
  height: 100px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  left: 0;
  gap: 1rem;
  z-index: 1000;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.1em;
  opacity: 0.9;
}

.section {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section h2 {
  color: #667eea;
  margin-bottom: 20px;
  font-size: 1.5em;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #495057;
}

.input-group input, .input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 14px;
}

.response-display {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  padding: 15px;
  margin-top: 15px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.explanation {
  background: #e8f4fd;
  border-left: 4px solid #667eea;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 5px;
}

.explanation h3 {
  color: #667eea;
  margin-bottom: 15px;
}

.explanation p {
  margin-bottom: 10px;
}