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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #444;
  background: #f0f4f8;
}

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

/* Header */
header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 2px solid #e0e0e0;
}
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #ff6600;
}
.brand h1 {
  font-size: 2rem;
  color: #333;
}
.brand a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #ff6600, #ffa733);
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}
.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
/* Keep hero button (btn-hero) orange/white style if desired */
.btn-hero {
  background: #fff;
  color: #ff6600;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-hero:hover {
  background: #ff6600;
  color: #fff;
}

/* Green Button for Affiliate Cards */
.btn-green {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-green:hover {
  background: #218838;
}

/* Section Titles */
section h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 2.4rem;
  color: #333;
}

/* Services & Affiliate Cards (shared style) */
#services, #affiliates {
  padding: 60px 0;
  background: #fff;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.card {
  background: linear-gradient(145deg, #fff, #f9f9f9);
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #ff6600;
}
.card .subheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}
.card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* Terms, Privacy & Affiliate Disclaimer Sections */
#terms, #privacy, #disclaimer {
  padding: 40px 20px;
  background: #fafafa;
  border-top: 2px solid #e0e0e0;
  margin-top: 30px;
}
#terms p, #privacy p, #disclaimer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin: 10px 0;
}

/* Social Media Section */
#social {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffa733, #ff6600);
  text-align: center;
  color: #fff;
}
.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #333;
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
#contact p {
  margin-bottom: 15px;
  font-size: 1rem;
}
#contact a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

/* Footer Section */
footer {
  background: #333;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}
.footer-container p {
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 10px 0;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    flex: 1 1 80%;
  }
}
