/* Header Styles */
.header {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.menu a:hover {
    color: #000;
}
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #193740;
  color: #333;
}

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

/* Intro Text Section */
.intro-text {
  background-color: #fff;
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.intro-text h2 {
  color: #007bff;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* URL Opener Form */
.url-opener-form {
  background-color: #f4f4f4;
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.url-opener-form h1 {
  color: #007bff;
  margin-bottom: 20px;
}

.url-opener-form textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  resize: none;
}

.url-opener-form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.url-opener-form button:hover {
  background-color: #0056b3;
}

/* Long Text Section */
.long-text {
  background-color: #fff;
  width: 100%;
  padding: 40px 0;
}

.long-text h2 {
  color: #007bff;
  margin-bottom: 15px;
}

.long-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.long-text ul, .long-text ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.long-text li {
  margin-bottom: 10px;
}

/* Footer Styles */
.footer {
    padding: 40px 20px;
    margin-top: 0px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    padding: 0 100px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-size: 0.9em;
}

.footer-section a:hover {
    color: #fff;

/* =========================
   FAQ SECTION
========================= */

.faq {
    padding: 60px 0;
    background-color: #f9fafb;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

/* FAQ Item */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Plus / Minus Icon */
.faq-question::after {
    content: "+";
    font-size: 22px;
    font-weight: bold;
    color: #2563eb;
    transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    background-color: #f8fafc;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 18px;
    color: #374151;
    line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 500px; /* safe for long answers */
    padding-top: 16px;
}

.faq-item.active .faq-question::after {
    content: "−";
}

/* Mobile */
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
    }
}

