/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
}

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

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #f0a500;
  flex-wrap: wrap;
}

/* Logo */
header .logo {
  font-size: 32px;
  font-weight: bold;
  color: orange;
  margin-right: 20px;
}

/* Site Title */
header .site-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-right: auto;
}

/* Navigation Bar */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;           /* menu text black */
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: orange;         /* hover effect */
}

/* Responsive: stack menu on smaller screens */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* General H2 spacing */
h1 {
  color: black;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 24px 0; /* top and bottom spacing */
}


/* Center the first main H2 text */
section:first-of-type h1 {
  text-align: center;
}


/* General H2 spacing */
h2 {
  color: black;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 24px 0; /* top and bottom spacing */
}


/* Center the first main H2 text */
section:first-of-type h2 {
  text-align: center;
}

/* Only center and style the specific intro paragraph */
.intro-text {
  text-align: center;
  font-size: 14px;    /* smaller than h2 */
  color: #555;        /* optional lighter text */
  margin: 8px 0;      /* spacing */
}

/* Add extra space between intro paragraph and search intro */
.intro-text {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px; /* increase this value for bigger space */
}

/* Search intro styling */
.search-intro {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}


/* General P styling */
p {
  color: #333;
  font-size: 14px;
  margin: 8px 0;
}

/* Search & Filter */
.search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.search-row input, .search-row select {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid #f0a500;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search-row input:focus, .search-row select:focus {
  border-color: orange;
  box-shadow: 0 0 8px rgba(255,165,0,0.3);
  outline: none;
}

/* Card Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Card Styling */
.card {
  background: #fff7e6;
  border: 1px solid #f0a500;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

/* Icon centered at top */
.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: orange;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto 10px auto;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Icon Hover */
.card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255,165,0,0.4);
}

/* Title � LEFT aligned, black text */
.card h3 {
  margin: 0 0 4px 0;
  color: #000;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
}

/* Description � LEFT aligned, black text */
.card p {
  margin: 0 0 10px 0;
  color: #000;
  font-size: 12px;
  text-align: left;
  text-decoration: none;
}

/* Remove underline from any link inside cards */
.card a {
  text-decoration: none !important;
  color: inherit;
}


/* Steps Section with Boxes */
.steps {
  background: #fff3e6;
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.steps h2 {
  color: orange;
  margin-bottom: 12px;
}

.steps p {
  color: #333;
  margin-bottom: 24px;
}

/* Grid for step cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Individual step cards */
.step-card {
  background: #fff7e6;
  border: 1px solid #f0a500;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255,165,0,0.3);
}

/* Step number */
.step-card .step-number {
  font-size: 24px;
  font-weight: bold;
  color: orange;
  margin-bottom: 12px;
}

/* Step title */
.step-card h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

/* Step description */
.step-card p {
  font-size: 14px;
  color: #333;
  margin: 0;
}



/* Features Section */
.features {
  background: #fffbe6;             /* light orange background */
  padding: 10px 30px;              /* more padding for space inside box */
  border-radius: 12px;             /* rounded corners */
  margin-top: 20px;                /* space above the box */
  margin-bottom: 20px;             /* space below the box */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* subtle depth shadow */
}
.features ul li {
  margin-bottom: 10px;
}

/* Categories Section */
.categories {
  background: #fff3e6;             /* slightly different light orange */
  padding: 10px 30px;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* FAQ Section */
.faq {
  background: #fffbe6;
  padding: 10px 30px;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* FAQ details (individual Q&A boxes) */
.faq details {
  margin-bottom: 12px;
  border: 1px solid #f0a500;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff7e6;
  transition: background 0.3s, box-shadow 0.3s;
}
.faq details[open] {
  background: #ffe6cc;
  box-shadow: 0 4px 12px rgba(255,165,0,0.3);
}
.faq summary {
    list-style: none;           /* remove bullet/marker */
  -webkit-appearance: none;   /* remove default triangle in Safari */
  appearance: none;           /* remove default triangle in other browsers */
  font-weight: 600;
  cursor: pointer;
  color: 000;
  outline: none;
}
.faq summary::after { float: right; content: "▼"; transition: transform 0.3s; } .faq details[open] summary::after { content: "▲"; }


/* Responsive */
@media (max-width: 768px) {
  .search-row {
    flex-direction: column;
  }
}


/* Footer */
.site-footer {
  background: #fff3e6;  /* matches your section colors */
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 1px solid #f0a500;
  border-radius: 12px 12px 0 0;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-left .logo {
  font-size: 28px;
  font-weight: bold;
  color: orange;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: orange;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 12px;
  }
}

