/* Branding page styles */
.branding-section {
  background-color: #0a2e5c;
  padding: 60px 20px;
}

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

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

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

.branding-content h2,
.branding-content .fancy-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #f5f5f5;
}

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

.branding-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;
}

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

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

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

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

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

.what-included .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

@media (max-width: 980px) {
  .what-included .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .what-included .cards {
    grid-template-columns: 1fr;
  }
}

.section-title,
h2.section-title {
  color: #0a2e5c;
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}

.what-included .card {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
}

.what-included .card h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.what-included .card p {
  margin: 0;
  color: var(--muted);
}

.branding-process .steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

@media (max-width: 980px) {
  .branding-process .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .branding-process .steps {
    grid-template-columns: 1fr;
  }
}

.branding-process .steps li {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  position: relative;
}

.branding-process .steps li h3 {
  margin: 0 0 8px;
  padding-left: 36px;
}

.branding-process .steps li h3::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
