/* ========== ROOT VARIABLES ========== */
:root {
  --primary-color: #2563eb;
  --secondary-color: #0ea5e9;
  --muted-color: #5f6b7a;
  --background-color: #f4f7fc;
  --text-color: #333;
  --header-height: 80px;
  --padding: 30px;
  --max-width: 1200px;
  --border-radius: 8px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --highlight-color: #ff4d4d;
  --btn-hover: #0ea5e9;
  --link-color: #007bff;
}

/* ========== GENERAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--link-color);
}
a:hover {
  text-decoration: underline;
}

/* ========== HEADER ========== */
header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

header h1 {
  font-size: 36px;
  font-weight: 700;
}

/* ========== MAIN CONTENT ========== */
main {
  padding: var(--padding);
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

section {
  margin-bottom: 50px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--primary-color);
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

ul {
  margin-left: 20px;
  list-style: disc;
}

ul li {
  margin-bottom: 10px;
}

span.highlight {
  color: var(--highlight-color);
  font-weight: bold;
}

/* ========== BUTTON STYLES ========== */
button {
  padding: 12px 20px;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--btn-hover);
}

/* ========== FOOTER ========== */
footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 40px;
  margin-top: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

footer p {
  font-size: 14px;
}

footer a {
  color: var(--primary-color);
  font-weight: bold;
}

footer a:hover {
  color: var(--btn-hover);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }

  main {
    padding: 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 13px;
  }

  button {
    font-size: 14px;
  }
}
