/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f0f4f8;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Hero Section */
header#hero {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin: 40px 0;
  animation: fadeIn 1.5s ease-in-out;
}
header#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
header#hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.cta-button {
  display: inline-block;
  background: #d93025;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}
.cta-button:hover {
  background: #b9251f;
  transform: translateY(-5px);
}

/* Section Styles */
section {
  background: #fff;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: slideUp 1s ease-in-out;
}
section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #007bff;
}

/* Why Choose This Section */
#why ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#why ul li {
  flex: 1 1 250px;
  background: #ffe0b2;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
#why ul li:hover {
  transform: translateY(-5px);
}

/* Features Section */
#features ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#features ul li {
  flex: 1 1 250px;
  background: #d1c4e9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
#features ul li:hover {
  transform: translateY(-5px);
}

/* Comparison Section */
#comparison .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  font-size: 1rem;
}
.comparison-table th {
  background: #ff5722;
  color: #fff;
}
.comparison-table tr:nth-child(even) {
  background: #f7f7f7;
}

/* FAQ Section */
#faq .faq-item {
  margin: 20px 0;
  padding: 15px;
  background: #c8e6c9;
  border-radius: 8px;
}
#faq .faq-item .question {
  font-weight: bold;
  margin-bottom: 10px;
  color: #2e7d32;
}
#faq .faq-item .answer {
  margin-left: 10px;
  color: #555;
}

/* Legal Sections */
.legal-section {
  background: #fff;
  padding: 40px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.legal-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #007bff;
}
.legal-section p {
  margin: 10px 0;
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  header#hero h1 { font-size: 2rem; }
  header#hero p { font-size: 1rem; }
  .cta-button { padding: 12px 24px; font-size: 1rem; }
  nav { gap: 10px; }
}
