/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* Header & Navigation */
header {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  padding: 10px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
.social-icons {
  list-style: none;
  display: flex;
}
.social-icons li {
  margin-left: 15px;
}
.social-icons li a {
  color: #fff;
  font-size: 1.2em;
  transition: color 0.3s ease;
}
.social-icons li a:hover {
  color: #000;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg') no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}
.hero .btn {
  background-color: #ff6f61;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.hero .btn:hover {
  background-color: #e65b50;
}

/* Article Section */
.article-section {
  background-color: #fff;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.article-section article {
  max-width: 800px;
  margin: auto;
}
.article-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #ff6f61;
}
.article-section h3 {
  font-size: 1.8em;
  margin: 30px 0 15px;
  color: #ff6f61;
}
.article-section p {
  margin-bottom: 20px;
  font-size: 1em;
  text-align: justify;
  line-height: 1.8;
}
.article-section ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.article-section ul li {
  margin-bottom: 10px;
}
.inline-btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.inline-btn:hover {
  background-color: #218838;
}

/* Affiliate Products Section */
.affiliate-products {
  background-color: #fff;
  padding: 60px 20px;
  margin: 40px 0;
}
.affiliate-products h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #ff6f61;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-card {
  background-color: #fafafa;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  color: #333;
}
.product-card p {
  margin-bottom: 20px;
  font-size: 1em;
}
.product-card .btn {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.product-card .btn:hover {
  background-color: #218838;
}

/* Legal Sections */
.legal-section {
  background-color: #fff;
  padding: 40px 20px;
  margin: 40px 0;
  border-top: 1px solid #ddd;
}
.legal-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #ff6f61;
}
.legal-section p {
  max-width: 800px;
  margin: auto;
  font-size: 1em;
  text-align: center;
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 20px 0;
}
.footer-links {
  text-align: center;
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #000;
}
footer p {
  text-align: center;
  font-size: 0.9em;
}
