.shooting-description-container {
  width: 85%;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 40px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.text-container {
  flex: 1 1 55%;
}

.text-container p {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #444;
}

.text-container strong {
  font-weight: bold;
}

/* Footer note */
.price-note {
  max-width: 55%;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
  .text-container p {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .content {
    row-gap: 30px;
  }
}

@media (max-width: 425px) {
  .text-container p {
    font-size: 1rem;
  }
}

