
/* Hakkimizda stilleri */

.about-us-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: auto;
    padding: 20px;
    border: 5px solid #cacaca;
    border-radius: 20px;
    background-color: #f4f4f4;
}

.about-us-content {
    text-align: left;
    width: 65%;
    height: auto;
    margin: 50px 0px;
}

.about-us-content h2 {
    margin-bottom: 30px;
    margin-left: 50px;
    font-size: 25px;
    font-weight: bold;
    color: #00645f;   
}

.about-us-content p {
    margin-left: 50px;
    font-size: 14px;
    line-height: 1.6;
}

.about-us-content p a { 
    font-size: 18px;
    font-weight: bold;
    color: #00645f;   
}

.about-us-image {
    max-width: 25%;
    height: auto;
    margin-right: 30px;
}


/* Mobil stili */

@media (max-width: 1080px) {
    .about-us-container {
        flex-direction: column;
        padding: 10px;
        margin: 0px 30px 50px;
    }

    .about-us-info {
        flex-direction: column;
        width: 100%;
        padding: 15px;
    }

    .about-us-content {
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }

    .about-us-content h2 {
        font-size: 23px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .about-us-content p {
        font-size: 13px;
        margin-left: 0;
        line-height: 1.6;
    }

    .about-us-content p a {
        font-size: 16px;
    }

    .about-us-image {
        max-width: 80%;
        height: auto;
        margin: 10px 0px;
    }
}

/* --------------------------------------------------------- */

/* Sayac bolumu stilleri */

.counter-section {
  text-align: center;
  padding: 0px 20px;
  margin: 50px 0px;
}

.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-box {
  min-width: 225px;
  max-width: 225px;
  padding: 25px 15px;
  border: 5px solid #00645f0d;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 18px rgba(0, 100, 95, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 100, 95, 0.2);
}

.counter {
  font-size: 30px;
  font-weight: bold;
  color: #00645f;
}

.counter-box p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #00645f;
}

/* Mobil stili */

@media (max-width: 1080px) {
  .counter-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: -20px;
  }

  .counter-box {
    width: 50%;
    max-width: 320px;
    padding: 20px 12px;
  }

  .counter {
    font-size: 26px;
  }

  .counter-box p {
    font-size: 14px;
  }
}

/* --------------------------------------------------------- */