/* Creed Heading Section */
.creed-section {
  background-color: #f8f9fa;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
}

.creed-container {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.creed-container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.creed-container h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #e74c3c;
}

/* Creed Cards Section */
.creeds-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.creeds-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.creed-card-alt {
  width: 280px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-left: 6px solid #004070;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.creed-card-alt:hover {
  transform: translateY(-6px);
}

.creed-image img {
  width: 100%;
  height: auto;
  display: block;
}

.creed-content {
  padding: 15px 20px;
  text-align: left;
}

.creed-content h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.view-link {
  display: inline-block;
  font-size: 14px;
  color: #004070;
  text-decoration: underline;
  font-weight: bold;
}

.view-link:hover {
  color: #0060a0;
}
