* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
}

.top-header {
    width: 100%;
    padding: 15px 0;
    margin-bottom: auto;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.header-text h2 {
    font-size: 18px;
    color: #3971B8;
    margin: 0;
    font-weight: 700;
}

.header-text p {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0 0;
}

.hero-section {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}
/* product vision styling */
.product-vision {
    max-width: 1000px;
    width: 100%;
    margin: 80px auto;
}

.pv-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.pv-sprint {
    background: #f6e6a5;
    color: #222;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* Informational box with blue border used under Productvisie */
.info-box {
  background: #fff;
  border: 2px solid #3971B8;
  border-radius: 12px;
  padding: 18px 22px;
  color: #333;
  line-height: 1.6;
  margin-top: 12px;
  box-shadow: 0 6px 18px rgba(57,113,184,0.06);
}

.info-box .box-header {
  display: inline-block;
  background: #3971B8;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    background-color: #3971B8;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 72px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.1;
}

.main-title .highlight {
    color: #3971B8;
}

.cta-button {
    display: inline-block;
    background-color: #F6E6A5;
    color: #222;
    padding: 16px 60px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
}

.intro-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.section {
      max-width: 900px;
      width: 100%;
      text-align: center;
      margin-top: 18%;
    }
 
    .section-title {
      font-size: 2.4rem;
      font-weight: 800;
      color: #3971B8;
      margin-bottom: 12px;
    }
 
    .section-title .star {
      color: #f5c842;
      font-size: 1.8rem;
      vertical-align: middle;
    }
 
    .section-subtitle {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 48px;
      font-weight: 400;
    }
 
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
 
    .team-card {
      background: #fff;
      border: 2px solid #3971B8;
      border-radius: 18px;
      padding: 36px 20px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 18px rgba(74, 108, 247, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
 
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(74, 108, 247, 0.15);
    }
 
    .avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #3971B8;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
 
    .avatar .fallback-icon {
      display: none;
      width: 40px;
      height: 40px;
    }
 
    .avatar.no-img .fallback-icon {
      display: block;
    }
 
    .member-name {
      font-size: 1rem;
      font-weight: 800;
      color: #3971B8;
    }
 
    .member-role {
      font-size: 0.82rem;
      color: #666;
      font-weight: 500;
    }
 
    @media (max-width: 680px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
 
    @media (max-width: 420px) {
      .team-grid { grid-template-columns: 1fr; }
    }

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .intro-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .intro-text {
        font-size: 14px;
    }
}
