* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman',serif;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #C49F8C;
  color: #C49F8C;
}
.hero-section {
  background-color: #494544;
  color: #f5f5f5;
  padding: 4rem 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-content .text {
  flex: 1 1 500px;
}

.logo-text {
  display: flex;
  align-items: center;
  font-size: 2.75rem;
  color: #C19B89;
}

.logo-icon {
  width: 40px;
  margin-right: 10px;
}

.hero-content .text h2 {
  font-size: 2rem;
  margin-top: 1rem;
  color: #f5f5f5;
}

.hero-content .text p {
  font-size: 1rem;
  color: #d4d4d4;
  margin: 1rem 0 2rem;
  max-width: 500px;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #C19B89;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #1e1e1e;
}

.image {
  flex: 1 1 400px;
  text-align: right;
}

.image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f1e2db;
}

.commitments-section {
  background-color: #2e2e2e;
  color: #C49F8C;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.commitments-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.commitment-card {
  background-color: #3a3a3a;
  padding: 1.5rem;
  border-radius: 8px;
  color:#e6e3e3;
}

.commitment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.commitment-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Full width for the bottom card */
.commitment-card.full-width {
  grid-column: span 2;
}

.how-it-works {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.how-it-works h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: #464342;
}

.steps-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1 1 300px;
  background-color:#2a2f33;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.step-card.dark {
  background-color: #494544;
  color: #fff;
}
.step-card.light{
  background-color: #494544;
  color:#fff;
}



.chevron-top {
  position: relative;
  height: 60px;
  background-color: inherit;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chevron-top .icon {
  font-size: 1.5rem;
  color: #C49F8C;
}

.step-content {
  padding: 1.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.5;
}


.vetting-process {
  background-color: #494544;
  color: #ccc;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vetting-process h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color:#C19B89;
}

.vetting-process p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vetting-process ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.vetting-process li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.vetting-process li strong {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
}


.benefits-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #464342;
}


.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  flex: 1 1 280px;
  background-color: #494544;
  padding: 1.5rem;
  text-align: left;
  border-radius: 8px;
}

.benefit-item i {
  font-size: 2rem;
  color: #C19B89;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e6e3e3;
}
body {
  margin: 0;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #C49F8C;
  color: #ffffff;
}

h1 {
  color: #464342;
  font-size: 2rem;
  margin-bottom: 10px;
}
.logo-text {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between image and text */
  font-size: 2rem;
  color: #d4916a;
  margin-bottom: 10px;
}

.logo-icon {
  height: 40px; /* adjust size as needed */
}


.subtitle {
  font-size: 1rem;
  color: #ccc;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.grid-item {
  position: relative;
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.grid-caption {
  margin-top: 8px;
  font-weight: bold;
  color: #fff8dc;
  text-align: center;
}

.footer-text {
  margin-top: 30px;
  font-size: 1rem;
  color: #ccc;
}

.footer {
  background-color: #464342;
  padding: 20px 0;
  color: #ccc;
  text-align: center;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #d4916a;
  margin: 0 10px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}
