body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f6f1;
  color: #111;
}

.breeding-section {
  width: 95vw;
  max-width: 1600px;
  margin: 45px auto;
  padding: 55px 70px;
  background: #fff2df;
  border-radius: 25px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.breeding-container {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 55px;
  align-items: center;
}

.breeding-image-area {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.breeding-image-area img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.litter-info {
  padding: 18px 20px;
  background: #fffaf2;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  font-size: 17px;
  line-height: 1.7;
}

.litter-info p {
  margin: 0 0 8px;
}

.litter-info p:last-child {
  margin-bottom: 0;
}

.breeding-content {
  width: 100%;
  max-width: none;
}

.breeding-content h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
}

.breeding-content h2 {
  font-size: 26px;
  margin: 30px 0 12px;
  font-weight: 800;
}

.breeding-content p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 900;
  margin-top: 15px;
  margin-right: 10px;
  text-decoration: none;
}

.btn-green {
  background: #2e9e5b;
  color: white;
}

.quick-links {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.quick-card {
  width: 150px;
  text-align: center;
  text-decoration: none;
}

.quick-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-card span {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: #222;
  font-size: 15px;
}

.quick-card:hover img {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .breeding-section {
    width: auto;
    margin: 25px 15px;
    padding: 35px 25px;
  }

  .breeding-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .breeding-image-area img {
    height: 320px;
  }

  .breeding-content h1 {
    font-size: 34px;
  }

  .breeding-content h2 {
    font-size: 23px;
  }

  .breeding-content p,
  .litter-info {
    font-size: 16px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}