#cerez {
  background: linear-gradient(135deg, var(--gradian9), var(--gradian10));
  color: white;
  padding: 60px 40px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}

#cerez .content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#cerez h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  border-left: 5px solid var(--dort);
  padding-left: 15px;
}

#cerez h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #e0f7fa;
}

#cerez p {
  color: #e0f7fa;
  line-height: 1.6;
  font-size: 1.05rem;
}

#cerez a {
  color: #aef;
  text-decoration: underline;
}

#cerez a:hover {
  color: #fff;
  text-decoration: none;
}

#cerez .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dort);
  color: var(--gradian9);
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  max-width: fit-content;
}

#cerez .btn:hover {
  background-color: var(--hover);
  color: var(--text-hover);
  box-shadow: 0 10px 25px -10px var(--golge);
}

/* Madde listesi için aynı stil */
#cerez .bullet-list {
  list-style: none;
  padding-left: 0;
}

#cerez .bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #e0f7fa;
}

#cerez .bullet-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dort);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  #cerez {
    padding: 40px 20px;
    text-align: center;
  }

  #cerez .content {
    padding: 0;
  }

  #cerez .btn {
    margin: 0 auto;
  }

  #cerez .bullet-list li {
    text-align: left;
    justify-content: center;
  }
}
