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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #ffffff, #e6f0ff);
  padding: 1.5rem 0;
  border-bottom: 2px solid #cce0ff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #0077cc;
  object-fit: cover;
}

header h1 {
  font-size: 2rem;
  color: #0077cc;
}

header p {
  font-size: 1rem;
  color: #555;
}

nav {
  background-color: #0077cc;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0.5rem 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

.section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section h2 {
  margin-bottom: 1rem;
  color: #0077cc;
  border-left: 4px solid #0077cc;
  padding-left: 0.5rem;
  font-size: 1.5rem;
}

.section ul {
  list-style-type: disc;
  margin-left: 2rem;
}

.section p, .section li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #f1f1f1;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ccc;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }
.workshops-section {
  margin-top: 50px;
}

.workshops-section h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  text-align: center;
  color: #006699;
}

.workshops-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.workshop-card {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.workshop-card h4 {
  color: #003366;
  margin-bottom: 10px;
}

.workshop-card p {
  font-size: 0.95em;
  line-height: 1.5;
}

}
