/* General Styles */
:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ffa05d;
  --dark-bg: #1a1a1a;
  --darker-bg: #121212;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa05d 100%);
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--darker-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-orange);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* FAQ Section Styles */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-orange);
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.content-box {
  background-color: var(--darker-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-orange);
}

.content-box h2 {
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.content-box h2 i {
  margin-right: 10px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.faq-item a {
  color: var(--secondary-orange);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.cta-button-hero {
  display: inline-block;
  background: var(--gradient-orange);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Footer Styles */
.footer {
  background: #000;
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--primary-orange);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-label {
  font-weight: 500;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 0 50px;
  }

  .section-header h1 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 30px;
  }

  .section-header h1 {
    font-size: 1.8rem;
  }

  .content-box {
    padding: 20px;
  }
}
