* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  /* : "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-size: 16px;
  background-color: #faf6dd;
  color: #333;
}

/* Navbar Styling */
nav.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background-color: #e9d3e0;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.logo a {
  text-decoration: none;
  color: #313288;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #1f2055;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-button {
  display: inline-block;
  padding: 20px 40px;
  font-size: 20px;
  background-color: #92a8d1;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #92a8d1;
  min-width: 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nav-button:hover {
  background-image: url("images/newspaper.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.reporting-btn:hover {
  background-image: url("images/newspaper.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.coding-btn:hover {
  background-image: url("images/coding.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-btn:hover {
  background-image: url("images/city.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-button:active {
  transform: scale(0.98);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: calc(100vh - 200px);
}

.intro-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.about-text {
  flex: 1;
  padding-right: 20px;
}

.about-message-large {
  padding-top: -10px;

  font-size: 28px;
  margin-bottom: 15px;
}

.about-message {
  font-size: 24px;
  line-height: 1.4;
}

.home-picture {
  margin-top: 30px;
  width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #313288;
  flex-shrink: 0;
}

.section-title {
  padding-top: 30px;
  font-size: 28px;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
}

/* Footer */
footer.footer {
  background-color: #e9d3e0;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 60px;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

* Dropdown Sections */ .dropdown-section {
  margin-bottom: 20px;
  border: 2px solid #313288;
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-btn {
  width: 100%;
  background-color: #92a8d1;
  color: white;
  padding: 18px 20px;
  font-size: 22px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-btn:hover {
  background-color: #313288;
}

.dropdown-btn:after {
  content: "+";
  font-size: 28px;
  font-weight: bold;
}

.dropdown-btn.active:after {
  content: "−";
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.dropdown-content.active {
  max-height: 500px;
  padding: 20px;
}

.dropdown-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.article-list {
  list-style: none;
  padding: 0;
}

.article-list li {
  margin-bottom: 10px;
}

.article-list a {
  color: #313288;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.article-list a:hover {
  color: #7a4383;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    gap: 20px;
    padding: 15px 20px;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }
}
