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

/* Basic Body */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
  background: #f5f5f5;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2d3436;
  color: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height:60px;
}

.logo {
  font-size: 1.5rem;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  display: none;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Main Section */
.main-content {
  padding: 20px;
}

/* Cards */
.card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  word-wrap: break-word;
}

/* Footer */
.footer {
  background-color: #2d3436;
  color: white;
  padding: 20px;
  margin-top: 20px;
 
}

.footer-content {
  max-height: 1000px;
  margin: 0 auto;
  text-align: center;
  width:100%;
}

.footer p {
  margin-bottom: 10px;
}

.social-links {
  margin: 10px 0;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: brightness(1000%);
}

/* Media Queries */
@media screen and (min-width: 768px) {
  .card-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
  }
}

@media screen and (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #2d3436;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
  }

  .nav a {
    padding: 8px 0;
  }

  .nav.show {
    display: flex;
  }
}