/* ==========================================================================
   İLKELERİMİZ SAYFASI STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   CONTENT SECTION
   -------------------------------------------------------------------------- */
.content-section {
  background: #fff;
  padding: 4rem 0;
  margin: 0;
}

.principles-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #071D49;
  margin-bottom: 2.5rem;
}

.principles-title span {
  color: #005bff;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.principle-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071D49;
}

.principle-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #071D49;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.principle-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.principles-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .principles-image {
    min-height: 250px;
    margin-top: 2rem;
  }
}

