.about-section {
  width: 80%;
  margin: 50px auto;
  border: 2px solid #0099ff;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-header {
  background-color: #0099ff;
  padding: 10px 20px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  width: fit-content;
  border-radius: 5px 5px 0 0;
}

.about-content {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

@media screen and (max-width: 768px) {
  .about-section {
    width: 90%;
    margin: 20px auto;
    padding: 15px;
  }

  .about-header {
    font-size: 18px;
  }

  .about-content {
    font-size: 14px;
  }
}





/* Slider Container */
.slide-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Slides */
.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 5px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active {
  background-color: black;
}


/*  */
* .maincontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid #e0e0e0;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: black;
}

.title {
  color: black;
}

/* Section Styling */
section {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* News Section - Cards */
.news-container {
  display: flex;
  gap: 20px;
}

.news-card {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Projects Section - Grid Layout */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.projects-card {
  padding: 20px;
  border-left: 5px solid #12b0e0;
}

/* FAQ Section - Simple Paragraphs */
.faq-container {
  padding: 10px 0;
}

.faq-container h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.faq-container p {
  padding: 5px 0 15px;
  border-bottom: 1px solid #eee;
}

/* Team Section - Horizontal Cards */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Resources - Simple List */
.resources-container ul {
  list-style: none;
  padding-left: 0;
}

.resources-container li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.resources-container a {
  text-decoration: none;
  font-weight: bold;
}

/* Newsletter Section */
.newsletter-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-input {
  width: 300px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 12px 18px;
  border: none;
  background: #333;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease-in-out;
}

.newsletter-button:hover {
  background: #555;
}

/* Responsive Design */
@media (max-width: 768px) {

  .news-container,
  .team-container {
    flex-direction: column;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  .newsletter-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
  }
}