/* Font tanımlaması */
* {
    font-family: 'Poppins', sans-serif;
}

/* Özel stiller buraya eklenecek */
.ac-feature-box {
    background-color: #E6E6E6;
    color: #000000;
    transition: all 0.3s ease;
}

/* Masaüstü için border-radius değerleri */
@media (min-width: 768px) {
    .ac-feature-box:nth-child(1) {
        border-radius: 10px 0 0 0;
    }
    .ac-feature-box:nth-child(2) {
        border-radius: 0;
    }
    .ac-feature-box:nth-child(3) {
        border-radius: 0 10px 0 0;
    }
}

/* Mobil için border-radius sıfırlama */
@media (max-width: 767px) {
    .ac-feature-box {
        border-radius: 0;
    }
}

.ac-feature-box.active {
    background-color: #D2202E;
    color: #FFFFFF;
}

.ac-feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ac-content {
    display: none;
}

.ac-content.active {
  display: block !important;
  visibility: visible !important;
}

/* Help Desk içerik stilleri */
.ac-slider-image img {
    border-radius: 0 0 10px 10px;
    object-fit: cover;
}

.ac-content-detail {
    margin-top: 2rem;
}

.ac-content-text h2 {
    color: #000;
    font-weight: 600;
}

.ac-content-text h3 {
    color: #000;
    font-weight: 500;
}

.ac-content-text p {
    line-height: 1.6;
}

.ac-content-image {
    margin-top: 20px;
}

.ac-info-box {
    background: #F5F5F7;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ac-info-title {
    color: #D2202E;
    font-weight: bold;
  }
  
  .ac-info-list {
    color: #000000;
  }
  
  .ac-info-list li {
    position: relative;
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
    list-style: none;
    font-weight: 300;
  }
  
  .ac-info-list li::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    background: #D2202E;
    border-radius: 50%;
    display: inline-block;
  }

.ac-content-detail ul.list-disc li {
    position: relative;
    font-weight: 300;
}
.ac-content-detail ul.list-disc li::marker {
    color: #D2202E;
}

.ac-faq-item {
    margin-bottom: 10px;
    padding: 0px 10px;
    border-radius: 6px;
}

.container{
    max-width: 1200px !important;
}

.ac-form {
  max-width: 900px;
  margin: 0 auto;
  background: none;
  padding: 0;
}
.ac-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}
.ac-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.ac-form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}
.ac-form-group input,
.ac-form-group textarea {
  background: #F5F5F7;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
  resize: none;
}
.ac-form-group input:focus,
.ac-form-group textarea:focus {
  border: 1.5px solid #D2202E;
}
.ac-form-btn {
  background: #D2202E;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  float: right;
}
.ac-form-btn:hover {
  background: #b81b26;
}
@media (max-width: 900px) {
  .ac-form-row {
    flex-direction: column;
    gap: 0;
  }
  .ac-form-btn {
    width: 100%;
    float: none;
  }
}

.ac-form-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
}
.ac-captcha-group {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
}
.ac-form-btn {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .ac-form-row-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ac-form-btn {
    width: 100%;
  }
}

.ac-form-success {
  background: #e6f9ea;
  color: #218838;
  border: 1.5px solid #b2e2c7;
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 24px auto;
  max-width: 500px;
  box-shadow: 0 2px 12px 0 rgba(33,136,56,0.07);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}