body {
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: #333;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

body.dark h2 {
  border-color: #444;
}

.about-me, .skills, .current-projects {
  margin-bottom: 40px;
}

.skills ul {
  list-style: none;
  padding-left: 0;
}

.skills li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* === PAYMENT SECTION === */
.payment {
  margin: 40px auto;
  padding: 30px;
  background-color: #1a1a1a;
  border-radius: 20px;
  color: #eee;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  max-width: 800px;
}

.payment h2 {
  font-size: 28px;
  color: #9a5de1;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
}

.payment-section {
  margin-bottom: 30px;
}

.payment-section h4 {
  color: #f0f0f0;
  font-size: 22px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px #000;
}

.payment ul {
  list-style-type: none;
  padding-left: 0;
}

.payment li {
  margin: 8px 0;
  padding: 10px 12px;
  background-color: #262626;
  border-left: 4px solid #9a5de1;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.payment li:hover {
  background-color: #2e2e2e;
  box-shadow: 0 0 5px rgba(154, 93, 225, 0.3);
}

