* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
h2 {
  font-family: Arial, sans-serif;
  color: #2c3e50;
  border-left: 6px solid #3498db;
  padding-left: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 30px;
  margin-bottom: 10px;
}

.home-section {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.home-section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 30px;
  color: #334155;
  text-align: justify;
  text-indent: 25px;
}

p::first-letter {
  font-size: 30px;
  font-weight: bold;
  color: #1e40af;
}

.activity-list {
  margin-top: 20px;
  margin-left: 25px;
  padding: 20px;
  list-style: none;
  border-left: 3px solid #3498db;
  background: #f1f5f9;
  border-radius: 6px;
  font-style: italic;
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}

.activity-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.activity-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: bold;
}

.chooseWords {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
}
.chooseWords:hover {
  color: #0056b3;
}
.chooseWords::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.chooseWords:hover::after {
  width: 100%;
}
/* --- RESPONSIVLİK ÜÇÜN --- */

@media (max-width: 992px) {
  .home-section {
    padding: 30px 20px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
  }

  .activity-list {
    font-size: 16px;
    padding: 15px;
    margin-left: 15px;
  }

  h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .wrapper {
    padding-inline: 1rem;
  }

  h2 {
    font-size: 18px;
    margin-top: 20px;
  }

  .home-section {
    padding: 20px 15px;
    margin-top: 15px;
    border-radius: 10px;
  }

  p {
    font-size: 15px;
    line-height: 24px;
    text-indent: 0;
    text-align: left;
  }

  .activity-list {
    font-size: 15px;
    padding: 12px;
    border-left: 2px solid #3498db;
  }

  .activity-list li {
    margin-bottom: 8px;
    padding-left: 15px;
  }
}
