/* ===== CUSTOM BRAND PAGE - CONTENT STYLES ===== */

/* Brand Section */
.custom-brand-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.brand-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c2c2c 0%, #722f37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.brand-benefits {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.brand-benefits li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.brand-benefits li:hover {
  color: #2c2c2c;
  transform: translateX(5px);
}

.brand-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.brand-benefits li:hover:before {
  transform: scale(1.2);
}

.brand-info {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
  padding: 35px;
  border-radius: 16px;
  border-left: 5px solid #d4af37;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.brand-info:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
}

.brand-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.brand-info p {
  font-size: 17px;
  color: #555;
  margin: 0;
  line-height: 1.7;
}
