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

body {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Canvas Circuit Background */
#circuit-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: #ffffff;
}

/* Content */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1b3264, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Workshops Grid */
.workshops-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 10px;
  max-width: 100%;
}

.workshop-card {
  background: #ffffffcc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 300px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

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

/* Logo Container */
.workshop-logo-placeholder {
  width: 130px;
  height: 50px;
  margin: 0 auto 0.8rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: none;
  border: none;
}

/* Logo Image */
.workshop-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Workshop Text */
.workshop-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1e293b;
}

.workshop-text {
  color: #475569;
  line-height: 1.5;
  font-size: 0.85rem;
}

/* Logo Row Styling */
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: white;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* General logo styling */
.logo-img {
  height: auto;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Individual logo size overrides */
.logo1 { max-height: 70px; }
.logo2 { max-height: 45px; }
.logo3 { max-height: 35px; }
.logo4 { max-height: 30px; }
.logo5 { max-height: 85px; }
.logo6 { max-height: 65px; }
.logo7 { max-height: 70px; }

/* Responsive Design */
@media (max-width: 900px) {
  .content {
    padding: 60px 15px;
  }
  .page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .workshop-card {
    padding: 1.2rem;
  }
  .workshop-subtitle {
    font-size: 1.2rem;
  }
  .workshop-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .content {
    padding: 40px 10px;
  }
  .page-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .workshops-grid {
    gap: 1rem;
  }
  .workshop-card {
    padding: 1rem;
  }
  .workshop-logo-placeholder {
    width: 120px;
    height: 50px;
  }
  .workshop-subtitle {
    font-size: 1.1rem;
  }
  .workshop-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .logo-row {
    gap: 12px;
  }
  .logo-img {
    max-height: 40px;
    flex: 1 1 45%;
  }
  .logo1 { max-height: 60px; }
  .logo2 { max-height: 40px; }
  .logo3 { max-height: 30px; }
  .logo4 { max-height: 25px; }
  .logo5 { max-height: 75px; }
  .logo6 { max-height: 55px; }
  .logo7 { max-height: 60px; }
}

@media (max-width: 400px) {
  .content {
    padding: 30px 8px;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .workshop-logo-placeholder {
    width: 100px;
    height: 40px;
  }
  .workshop-card {
    padding: 0.8rem;
  }
  .workshop-subtitle {
    font-size: 1rem;
  }
  .workshop-text {
    font-size: 0.75rem;
  }
  .logo-row {
    gap: 10px;
  }
  .logo-img {
    max-height: 35px;
    flex: 1 1 48%;
  }
}