.education-section {
    padding: 2rem 0;
  }
  
  .education-section h2 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
  }
  
  .education-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cd5c5c, #deb887, #f5deb3);
    border-radius: 2px;
  }
  
  /* Timeline Styles */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #a0522d, #cd5c5c, #d2691e);
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
  }
  
  .timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a0522d, #cd5c5c);
    border: 4px solid #fff;
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.2);
    transition: all 0.3s ease;
  }
  
  .timeline-item:nth-child(odd) .timeline-marker {
    right: -13px;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    left: -13px;
  }
  
  .timeline-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(160, 82, 45, 0.3);
  }
  
  .education-card {
    background: linear-gradient(135deg, #fdf5e6, #f5f5dc);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .education-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.6s ease;
  }
  
  .education-card:hover::before {
    left: 100%;
  }
  
  .education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
  }
  
  .education-card h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
  }
  
  .education-card h4 {
    font-size: 1.2rem;
    color: #a0522d;
    margin-bottom: 0.5rem;
  }
  
  .period {
    display: inline-block;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .education-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }
  
  /* Responsive Design untuk Education Page */
  @media (max-width: 768px) {
    .timeline::before {
      left: 20px;
    }
  
    .timeline-item {
      width: 100%;
      left: 0 !important;
      padding-left: 3rem !important;
      padding-right: 1rem !important;
    }
  
    .timeline-marker {
      left: 11px !important;
      right: auto !important;
    }
  
    .education-section h2 {
      font-size: 2rem;
    }
  
  }
  
  @media (max-width: 480px) {
    .education-card {
      padding: 1.5rem;
    }
  
    .education-card h3 {
      font-size: 1.3rem;
    }
  }
  