/* General Styles */
body {
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
}

/* Headings */
h1, h2, h3 {
  font-weight: bold;
  line-height: 1.3;
  color: #1a1a1a;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5rem;
  margin: 25px 0 10px;
  border-left: 4px solid #0073e6;
  padding-left: 10px;
}

h3 {
  font-size: 1.2rem;
  margin: 20px 0 8px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
}

/* Links */
a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin: 10px 0 20px 20px;
}

ul li, ol li {
  margin-bottom: 6px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: top;
}

table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Table */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Strong Text */
strong {
  font-weight: bold;
  color: #000;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay h1 {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  padding: 0 15px;
}

img{
  width: 100%;
}


/* Accordion Styles */
.accordion {
  border-top: 1px solid #ddd;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-button {
  background: #f9f9f9;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  outline: none;
  transition: background 0.3s;
}
.accordion-button:hover {
  background: #f1f1f1;
}
.accordion-content {
  display: none;
  padding: 0 15px 15px;
  background: #fff;
}
.accordion-item.active .accordion-content {
  display: block;
}
