/* Base layout and typography */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background: #fff8f5;
  color: #333;
  font-size: 16px;
  padding: 24px;
}

/* Header Styling */
header {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(255, 126, 95, 0.3);
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Headings */
h1 {
  color: black;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}
h2, h3 {
  color: #ff7e5f;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* Lists */
ul, ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

ul li, ol li {
  margin-bottom: 10px;
}

/* Blockquotes */
blockquote {
  background: #fff1eb;
  border-left: 6px solid #ff7e5f;
  padding: 16px 20px;
  margin: 30px 0;
  font-style: italic;
  color: #444;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 126, 95, 0.1);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  overflow: hidden;
}

table th, table td {
  padding: 14px 18px;
  border-bottom: 1px solid #f4d6c5;
  text-align: left;
}

table th {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  font-weight: bold;
}

table tr:hover {
  background-color: #fff0e6;
}

/* Navigation link */
nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive spacing for article content */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

footer {
  margin-top: 60px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 12px rgba(255, 126, 95, 0.2);
}

.footer-container {
  max-width: 960px;
  margin: auto;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffe0d0;
}