/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  color: #222;
  line-height: 1.6;
  padding: 20px;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.8rem;
  color: #111;
}

.tagline {
  font-size: 1.2rem;
  color: #666;
  margin-top: 5px;
}

/* Option Sections */
.option {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Unique gradient background for each */
.option-1 {
  border-left: 6px solid #ff4d4f;
  background: linear-gradient(135deg, #fff1f0, #ffe7e6);
}

.option-2 {
  border-left: 6px solid #2d8cf0;
  background: linear-gradient(135deg, #e6f0ff, #f0f7ff);
}

.option h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.option .desc {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

/* Buttons */
button {
  background-color: #000;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

button:hover {
  background-color: #222;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

/* Floating emoji (only for option 1) */
.option-1::after {
  content: "🎉";
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 20px;
  animation: float 2s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .option {
    padding: 20px;
  }

  button {
    width: 100%;
  }

  .option-1::after {
    right: 10px;
  }
}
/* Layout container for header and footer */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header Styling */
.main-header {
  background-color: #f0f0f5;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.main-header .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
}

.main-header .submit-link a {
  background-color: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.main-header .submit-link a:hover {
  background-color: #0056b3;
}

/* Footer Styling */
.main-footer {
  background-color: #f0f0f5;
  padding: 30px 0 15px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links a {
    display: block;
    margin: 6px 0;
  }

  .main-header .submit-link {
    margin-top: 10px;
  }
}
/* SEO Content Styling */
.seo-content {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  color: #333;
}

.seo-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.seo-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}
/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #f7f7f7;
  color: #333;
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: #eaeaea;
  color: #111;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fcfcfc;
  border-top: 1px solid #eee;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Optional: Smooth toggle animation */
.faq-answer.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
