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

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

/* Header */
.header {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff6b35;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('/assets/MainBackground.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 100px;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.8);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
}

/* Form */
.rebate-form {
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rebate-input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.rebate-input:focus {
  outline: none;
  border-color: #667eea;
}

.submit-btn {
  padding: 1rem 2.5rem;
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #e65a2b;
}

.error-message {
  color: #d32f2f;
  background-color: #ffebee;
  padding: 0.75rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.helper-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .form-group {
    flex-direction: column;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }
}

/* Privacy and Terms Pages */
.privacy-container,
.terms-container {
  max-width: 900px;
  text-align: left;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.95) !important;
}

.privacy-container h1,
.terms-container h1 {
  color: white !important;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.privacy-content,
.terms-content {
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.8;
}

.privacy-content h2,
.terms-content h2 {
  color: #ff6b35 !important;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h3,
.terms-content h3 {
  color: #ffa366 !important;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

.privacy-content ul,
.terms-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.privacy-content a,
.terms-content a {
  color: #667eea !important;
  text-decoration: underline;
}

.privacy-content a:hover,
.terms-content a:hover {
  color: #8899ff !important;
}

.privacy-content strong,
.terms-content strong {
  color: rgba(255, 255, 255, 0.95) !important;
}

.privacy-section,
.terms-section {
  margin-bottom: 2rem;
}

.last-updated {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.back-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #5568d3;
}

.back-link {
  text-align: center;
  margin-top: 2rem;
}

.back-link .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 1rem;
}

.back-link .btn-secondary {
  background-color: #667eea;
  border: 2px solid #667eea;
}

.back-link .btn-secondary:hover {
  background-color: #5568d3;
  border-color: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* FAQ Page Styles */
.faq-container {
  max-width: 1000px;
  width: 100%;
  text-align: left;
  padding: 3rem;
  background: transparent !important;
}

.hero-content.faq-container {
  background: transparent !important;
  max-width: 1000px;
}

.faq-container h1 {
  color: white !important;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.expand-all-btn {
  display: block;
  margin: 0 auto 2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.expand-all-btn:hover {
  background-color: #e65a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.faq-list {
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-item {
  margin-bottom: 1.25rem;
  background: rgba(0, 0, 0, 0.7) !important;
  border-radius: 8px;
  border-left: 4px solid #26a69a;
  border-top: none;
  border-bottom: none;
  border-right: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  box-shadow: 0 4px 20px rgba(38, 166, 154, 0.3);
  transform: translateY(-2px);
}

.faq-question {
  cursor: pointer;
  display: block;
  font-weight: 600;
  padding: 1.5rem;
  margin: 0 !important;
  color: white !important;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: all 0.3s;
  background: transparent !important;
}

.faq-question:hover {
  background: rgba(38, 166, 154, 0.15) !important;
}

.faq-item.active .faq-question {
  background: rgba(38, 166, 154, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-icon {
  display: inline-block;
  margin-right: 0.5rem;
  color: #26a69a !important;
  font-size: 1rem;
  transition: transform 0.3s;
  background: transparent !important;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-question span {
  color: white !important;
  font-size: 1.1rem;
  line-height: 1.4;
  background: transparent !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 !important;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.4) !important;
}

.faq-item.active .faq-answer {
  padding: 1.5rem !important;
  max-height: 500px;
}

.faq-answer p {
  margin: 0 0 0.75rem 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
  font-size: 0.95rem;
  background: transparent !important;
}

.faq-answer p:last-child {
  margin-bottom: 0 !important;
}

.faq-answer a {
  color: #26a69a !important;
  text-decoration: none;
  font-weight: 500;
  background: transparent !important;
}

.faq-answer a:hover {
  color: #4db6ac !important;
  text-decoration: underline;
}

.faq-answer strong {
  color: white !important;
  font-weight: 600;
  background: transparent !important;
}
