/* Genel */
section {
  padding: 40px 20px;
  margin-bottom: -20px;
  margin-top: -2px; /* Üst margin'i negatif yaparak yukarı kaydırır */

}

/* Server Files Section */
.server-files-section {
  background-color: #0079c1;
  color: #fff;
}

.server-files-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.server-files-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.server-files-section p {
  font-size: 16px;
}

.files-button {
  background: #f5f5f5;
  color: #0079c1;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.files-button:hover {
  background: #e4e4e4;
}

/* Server Name Suggestion Section */

.onelya-suggestion-wrapper {
  padding: 30px 150px;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin: 20px 30px;
  font-family: 'Inter', sans-serif;
}

.onelya-suggestion-title {
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  font-weight: 500;
}

.onelya-suggestion-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.onelya-suggestion-text {
  font-size: 18px;
  color: #333;
}

.onelya-generated-name {
  margin-left: 10px;
}

.onelya-light {
  color: #000;
  font-weight: 400;
}

.onelya-bold {
  font-weight: 700;
  color: #000;
}

.onelya-suggestion-btn {
  display: flex;
  align-items: center;
  background-color: #0d6efd;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.onelya-suggestion-btn:hover {
  background-color: #0b5ed7;
}

.onelya-suggestion-icon {
  margin-right: 8px;
}

/* S.S.S */

.onely-faq-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.onely-faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #0d6efd;
}

.onely-faq-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.onely-faq-item {
  border-top: 1px solid #eee;
}

.onely-faq-item:first-child {
  border-top: none;
}

.onely-faq-question {
  background: #f5f5f5;
  color: #333;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.onely-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.onely-faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.onely-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.onely-faq-question.active + .onely-faq-answer {
  max-height: 1000px; /* Daha fazla içerik için yükseltildi */
  padding: 20px 55px; /* Daha geniş iç boşluk */
}

/* Mobil için */
@media (max-width: 768px) {
  .onelya-suggestion-wrapper {
    padding: 30px 10px;
    margin: 20px 10px; /* istersen margin de küçültebilirsin */
  }
}