/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    background-color: #f7f9fc;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #1e2a38;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header p {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  nav {
    margin-top: 10px;
  }
  
  nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Main sections */
  main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    margin-bottom: 20px;
    color: #1e2a38;
  }
  
  section p {
    margin-bottom: 15px;
  }
  
  /* Resource cards */
  .resources-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .resource-card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
  }
  
  .resource-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .resource-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  
  .resource-card h3 {
    margin: 10px 0 5px;
    color: #1e2a38;
  }
  
  .resource-card .date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .resource-card a {
    color: #007BFF;
    text-decoration: none;
  }
  
  /* Contact form */
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-top: 10px;
  }
  
  form input,
  form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  form button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    background-color: #1e2a38;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #304559;
  }
  
  /* Footer */
  footer {
    background-color: #1e2a38;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
  }

/* For resource cards or buttons */
.resource-card, .btn {
  transition: all 0.3s ease;
}
.resource-card:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
  
