/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General */
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background: #0056b3;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

header nav a.login-btn {
    background: #ffb400;
    padding: 8px 12px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero .btn {
    background: #ffb400;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background: white;
}

.feature {
    width: 30%;
    text-align: center;
}

.feature h2 {
    margin-bottom: 10px;
    color: #0056b3;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.site-header {
  background: #0056b3;
  padding: 10px 0;
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.nav a.active {
  text-decoration: underline;
}

.btn-small {
  padding: 5px 10px;
  background: #ffb400;
  color: black;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffb400;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: white;
  color: #333;
}

.btn-light {
  background: white;
  color: #333;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  margin-bottom: 15px;
}

.hero-actions a {
  margin: 5px;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section.alt {
  background: #f1f1f1;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2, .card h3 {
  color: #0056b3;
  margin-bottom: 10px;
}

.link {
  color: #007bff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-no {
  display: inline-block;
  background: #0056b3;
  color: white;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 10px;
}

/* Forms */
.search-form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 4px;
}

/* CTA */
.cta {
  background: #0056b3;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.cta a {
  margin: 5px;
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 20px;
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.site-header {
  background: #0056b3;
  padding: 10px 0;
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.nav a.active {
  text-decoration: underline;
}

.btn-small {
  padding: 5px 10px;
  background: #ffb400;
  color: black;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffb400;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: white;
  color: #333;
}

.btn-light {
  background: white;
  color: #333;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  margin-bottom: 15px;
}

.hero-actions a {
  margin: 5px;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section.alt {
  background: #f1f1f1;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2, .card h3 {
  color: #0056b3;
  margin-bottom: 10px;
}

.link {
  color: #007bff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-no {
  display: inline-block;
  background: #0056b3;
  color: white;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 10px;
}

/* Forms */
.search-form, .donation-form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0056b3;
  outline: none;
}

/* Chatbot */
.chatbot-container {
  max-width: 700px;
  margin: auto;
}

.chat-window {
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  height: 400px;
  overflow-y: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.chat-message {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  max-width: 80%;
}

.chat-message.bot {
  background: #e8f0fe;
  color: #333;
}

.chat-message.user {
  background: #ffecb3;
  color: #333;
  align-self: flex-end;
}

.chat-form {
  display: flex;
  gap: 10px;
}

.chat-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.chat-form button {
  flex-shrink: 0;
}

/* CTA */
.cta {
  background: #0056b3;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.cta a {
  margin: 5px;
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 20px;
}
