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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Language Dropdown */
.language-dropdown {
  position: fixed;
  top: 11px;
  right: 170px;
  z-index: 100;
}

.language-button {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #BFFF00;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  box-sizing: border-box;
}

.language-button:hover {
  background: #BFFF00;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-menu {
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border: 2px solid #BFFF00;
  border-radius: 8px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

.language-menu.active {
  display: block;
}

.language-option {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
}

.language-option:hover {
  background: #f0f0f0;
}

.language-option.active {
  background: #BFFF00;
  color: #333;
}

/* Hero Section with Background Image */
.hero-section {
  background: linear-gradient(135deg, #BFFF00 0%, #A8E600 100%),
              url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1200 600%22%3E%3Cdefs%3E%3ClinearGradient id=%22grad%22 x1=%220%25%22 y1=%220%25%22 x2=%22100%25%22 y2=%22100%25%22%3E%3Cstop offset=%220%25%22 style=%22stop-color:%23BFFF00;stop-opacity:0.3%22 /%3E%3Cstop offset=%22100%25%22 style=%22stop-color:%23A8E600;stop-opacity:0.3%22 /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width=%221200%22 height=%22600%22 fill=%22url(%23grad)%22/%3E%3Ccircle cx=%22200%22 cy=%22150%22 r=%22120%22 fill=%22rgba(191,255,0,0.1)%22/%3E%3Ccircle cx=%221000%22 cy=%22500%22 r=%22200%22 fill=%22rgba(168,230,0,0.1)%22/%3E%3C/svg%3E');
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  color: #333;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 300 400%22%3E%3Cpath d=%22M50 50 Q100 20 150 50 T250 50 L250 400 Q200 380 150 400 T50 400 Z%22 fill=%22rgba(0,0,0,0.05)%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.5;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #BFFF00;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-button:hover {
  background: #BFFF00;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.signin-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #BFFF00;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  box-sizing: border-box;
}

.signin-button:hover {
  background: #BFFF00;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 500px;
}

.hero-right {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 30px;
}

.requirements-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.requirements-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #555;
}

.requirement-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #00a699;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 12px;
  margin-top: 2px;
}

.requirement-text {
  font-size: 15px;
  line-height: 1.5;
}

.benefits-list {
  list-style: none;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 16px;
  color: white;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-size: 20px;
  font-weight: bold;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 17px;
}

.benefit-description {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

/* Form Section */
.form-section {
  background: white;
  padding: 60px 40px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #333;
}

.form-container {
  max-width: 520px;
  margin: 0 auto;
}

form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-title {
  color: #333;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-label {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select {
  width: 100%;
  padding: 12px 16px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

select option {
  background-color: white;
  color: #333;
}

input::placeholder {
  color: #999;
}

input:focus, select:focus {
  outline: none;
  background: white;
  border-color: #BFFF00;
  box-shadow: 0 0 0 3px rgba(191, 255, 0, 0.15);
}

.phone-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.country-code-select {
  flex: 0 0 85px;
  min-width: 85px;
  max-width: 85px;
  padding: 12px 30px 12px 12px;
  font-weight: 600;
}

.phone-input {
  flex: 1;
}

button {
  width: 100%;
  padding: 14px 24px;
  margin-top: 10px;
  background: #BFFF00;
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(191, 255, 0, 0.25);
}

button:hover {
  background: #A8E600;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(191, 255, 0, 0.35);
}

button:active {
  transform: translateY(0);
}

.form-footer {
  color: #999;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

.form-footer a {
  color: #00a699;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.form-footer a:hover {
  color: #008b7d;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, #f8f8f8 0%, white 100%);
  padding: 60px 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #333;
  text-align: center;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border-left: 4px solid #BFFF00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  background: #fafafa;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question.active {
  background: #BFFF00;
  color: #333;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: inherit;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

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

.faq-answer.active {
  padding: 20px;
  max-height: 600px;
  border-top: 2px solid #BFFF00;
}

.faq-answer-text {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  form {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 50px 20px;
    min-height: auto;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  form {
    padding: 25px 15px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  input, select, button {
    font-size: 16px;
  }
}
