/* Photoshoot page styles */
.photoshoot-image img {
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.photoshoot-section {
  background-color: #0083d6;
  padding: 60px 20px;
}

.photoshoot-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.photoshoot-image img {
  border-radius: 24px;
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 50px;
}

.photoshoot-content {
  max-width: 500px;
}

.photoshoot-content h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
  color: #f5f5f5;
}

.photoshoot-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #f3f7fb;
}

.photoshoot-content .btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.photoshoot-content .btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  .photoshoot-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 0 12px;
  }
}

/* Mobile: center the image and constrain width to avoid side-offsets */
@media (max-width: 768px) {
  .photoshoot-image img {
    margin: 0 auto !important;
    display: block;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    height: auto;
  }
}

@media (max-width: 480px) {
  .photoshoot-image img {
    max-width: 260px;
  }
}

@media (max-width: 360px) {
  .photoshoot-image img {
    max-width: 220px;
  }
}

/* Section title override to match service pages */
.section-title,
h2.section-title {
  color: #0a2e5c;
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}
