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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  /* padding-top: 80px; Space for fixed header */
}

/* Header Navigation */
header {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.logo h1 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo span {
  color: #2c7cd8;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

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

/* Header2 styling */
.header2 {
  text-align: center;
  margin: 40px 0;
  background: white;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header2 h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.header2 p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

/* FAQ Content */
.faq-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-section h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #3498db;
  color: white;
}

.faq-question.active {
  background: #3498db;
  color: white;
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 20px;
  max-height: 300px;
}

.faq-answer p {
  margin-bottom: 15px;
  color: #555;
}

.faq-answer ul {
  margin-left: 20px;
  color: #555;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer strong {
  color: #2c3e50;
}

/* Contact CTA */
.contact-cta {
  background: #3498db;
  color: white;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-login {
  display: inline-block;
  padding: 2, 2px 15px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: #0066cc;
  color: white;
  transition: all 0.3s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn-login:hover {
  background-color: #0055aa;
  color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
  .auth-image {
    display: block;
  }
}

@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: 0.5s;
    z-index: 999;
  }

  nav ul.show {
    left: 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .search-box form {
    flex-direction: column;
  }

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

  .footer-content {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }
}
