/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header .logo img {
  height: 40px; /* Adjust size as needed */
}

header .header-title h1 {
  font-size: 1.8rem;
  margin: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding: 10px;
  display: block;
}

nav ul li a:hover {
  background-color: #575757;
}

/* Dropdown styles */
nav ul li.dropdown {
  position: relative;
}

nav ul li.dropdown:hover .dropdown-content {
  display: block;
}

nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  z-index: 1;
}

nav ul li .dropdown-content a {
  padding: 12px;
  text-align: left;
  color: white;
}

nav ul li .dropdown-content a:hover {
  background-color: #575757;
}

/* App Section Styles */
.app-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.app-card {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  padding: 20px;
  width: 48%; /* Ensure two columns layout */
  box-sizing: border-box;
}

.app-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 1rem;
  color: #555;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .app-card {
    width: 100%; /* Full width on smaller screens */
  }
}
