/* aboutstyle.css */

/* Genel font ve sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    background-color: #f5f6f8;
    color: #333;
    line-height: 1.6;
  }
  h2, h3 {
    margin-bottom: 1rem;
  }
  
  /* content kapsayıcı */
  .content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .content h2 {
    font-size: 2.2em;
    color: #004080;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
  }
  .content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffd700;
    margin: 1rem auto;
  }
  .content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
  }
  
  /* Sayaç Banner */
  .strain-counter-banner {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: linear-gradient(to right, #f3f7fc, #fcfcfa);
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .strain-counter-banner i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: #004080;
  }
  .strain-counter-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .banner-counter-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .banner-counter-item {
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 150px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-counter-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .banner-counter-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
  }
  .banner-count-number {
    font-size: 2rem;
    font-weight: 700;
    color: #004080;
  }
  
  /* Services Grid */
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .service-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #004080;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .service-card i {
    color: #004080;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .service-card h3 {
    color: #004080;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .service-card p {
    color: #555;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Grup 1: Üst satırdaki üç kart */
  .group-one {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .group-one .service-card {
    width: 300px;
  }
  
  /* Grup 2: Alt satırdaki iki kart */
  .group-two {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .group-two .service-card {
    width: 300px;
  }
  
  /* Responsive Tasarım */
  @media (max-width: 768px) {
    .banner-counter-list {
      flex-direction: column;
    }
    .banner-counter-item {
      width: 200px;
    }
    .group-one .service-card,
    .group-two .service-card {
      width: 100%;
    }
  }
  