/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f2e6;
  color: #2b2b2b;
  line-height: 1.7;
}

.gray {
  color: #555;
  font-size: 0.95rem;
  font-style: italic;
}



/* Header & Footer */
header {
  background-color: #fffaf1;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eaeaea;
}

footer {
  background-color: #fffaf1;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
}



/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-weight: 600;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #6a36a6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 1rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo img {
  margin-bottom: .5rem;
}

h1 {
  font-family: 'Montserrat' sans-serif;
  color: #715976;
}

.subtext {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-top: 0.5rem;
}

/* About Section */
.about {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.about h2 {
  font-size: 1.6rem;
  color: #6a36a6;
  margin-bottom: 0;
}

.about p {
  margin-bottom: 1rem;
}

/* Offerings Section */
.offerings {
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  text-align: center;
  padding: 4rem 2rem;
}

.offerings h2 {
  font-size: 1.8rem;
  color: #6a36a6;
  margin-bottom: 2rem;
}

.offerings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.offering {
  background-color: #c6b7c4;
  border-radius: 12px;
  padding: 1.5rem;
  width: 240px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.offering .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.offering h3 {
  font-size: 1.2rem;
  color: #6a36a6;
  margin-bottom: 0.5rem;
}

.offering p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn {
  background-color: #9f6edb;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #b4b4b4;
}



/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .offerings-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* CBP */
.custom-container {
  background-color: #f6f2e6;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.custom-content {
  max-width: 750px;
  color: #2b2b2b;
}

.custom-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.custom-content .highlight {
  color: #6a36a6;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.highlight2 {
  color: #6a36a6;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.custom-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.custom-content ul {
  margin: 1rem 0 2rem 1.5rem;
  padding-left: 1rem;
}

/* PMB */
.premade-container {
  background-color: #f6f2e6;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.premade-content {
  max-width: 750px;
  color: #2b2b2b;
}

.premade-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0rem;
}

.premade-content .highlight {
  color: #6a36a6;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.premade-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.premade-content ul {
  margin: 1rem 0 2rem 1.5rem;
  padding-left: 1rem;
}

.votm-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.votm-info {
  background-color: #fffaf1;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.votm-updates {
  background-color: #fef5ec;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  color: #6b21a8;
}

.votm-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.votm-info h2.highlight {
  font-size: 1.2rem;
  color: #7c3aed;
  margin-bottom: 0;
}

.votm-info ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.votm-info ul li {
  margin-bottom: 0.75rem;
}

.votm-info p,
.votm-updates p {
  margin: 1rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  font-family: 'Montserrat', sans-serif;
  color: #2b2b2b;
  background-color: #fef9f3;
}

.faq-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #4a00e0;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  color: #5e00a0;
}

.faq-content p,
.faq-content ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-content ul {
  padding-left: 1.2rem;
  list-style: disc;
}
