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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f5f7fa;
  color: #333;
  padding-bottom: 50px;
}

/* Header */
header {
  background: linear-gradient(135deg, #FF416C, #FF4B2B);
  color: #fff;
  padding: 20px 0;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 1.8em;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Social Icons */
.social-icons {
  list-style: none;
  display: flex;
}

.social-icons li {
  margin-left: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2em;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}

/* Article Content */
.article-content {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-content h1,
.article-content h2 {
  margin-bottom: 15px;
  color: #FF4B2B;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 15px;
  text-align: justify;
}

.article-content ul li,
.article-content ol li {
  margin-left: 20px;
  list-style: disc;
}

/* Call-to-Action Button */
.cta a {
  display: inline-block;
  background: #FF4B2B;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta a:hover {
  background: #FF416C;
}

/* Affiliate Products Section */
#affiliate-products {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px 0;
}

#affiliate-products h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #FF4B2B;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card h3 {
  margin-bottom: 10px;
  color: #FF416C;
}

.product-card p {
  margin-bottom: 15px;
  font-size: 0.95em;
  color: #555;
}

.product-card a {
  text-decoration: none;
  background: #FF4B2B;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background 0.3s;
}

.product-card a:hover {
  background: #FF416C;
}

/* Footer */
footer {
  background: #333;
  color: #ccc;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal {
  margin-top: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}
