/* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}/* Networking Section */
.mcdp-networking {
  padding: 80px 40px;
  background: #f9f9f9;
  
}

.networking-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.networking-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

.networking-intro {
  text-align: center;
  font-size: 1rem;
  color: #003366;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Networking Grid */
.networking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.networking-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.networking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.networking-card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.networking-card ul {
  padding-left: 20px;
  list-style-type: none;
}

.networking-card ul li {
  position: relative;
  font-size: 0.95rem;
  color: #003366;
  line-height: 1.5;
  padding-left: 25px;
  margin-bottom: 10px;
}

.networking-card ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
   
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #003366;
}

/* Responsive */
@media (max-width: 768px) {
  .networking-title {
    font-size: 1.6rem;
  }
  .networking-intro {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  .networking-card h3 {
    font-size: 1.1rem;
  }
  .networking-card ul li {
    font-size: 0.9rem;
  }
}
