.commitment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.commitment-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.commitment-item:last-child {
  margin-bottom: 0;
}

.commitment-item span {
    font-size: 14px;
    color: rgb(0 0 0 / 90%);
}

/* Icon Styling */
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
.commitment-card .commitment-title {
    margin: 15px 0 13px;
}
.commitment-card {
    color: #161616;
    opacity: 0.8;
}
.commitment-item-wrap {
    margin: 16px 0 16px;
}
.getFreeQuotetxt p {
    max-width: 660px;
    margin: 15px auto 25px;
    opacity: 0.8;
}
.getFreeQuotetxt.commitment-card {
    background: #0283d90d;
    border: 1px solid #0283d933;
    opacity: 1;
    margin-top: 40px;
}
.getFreeQuotetxt.commitment-card h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #000;
}


/* Founder Section */
.founder-section {
  background: var(--card);
}

.founder-img-wrap {
  text-align: center;
}

.founder-img {
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin-bottom: 24px;
}

.founder-img img {
  width: 288px;
  height: auto;
  display: block;
}

.founder-name {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 24px;
}

.founder p {
  color: rgba(26,26,26,0.8);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 12px;
}


/* Values Section */
.values-section {
  background: var(--muted);
}

.values-heading {
  text-align: center;
  margin-bottom: 48px;
}

.values-heading .section-label {
  display: block;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(2,129,215,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}






.socials a {
    background: #f0f2f4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: rgba(245, 247, 250, 0.7);
}
.socials svg {
    color: #000;
    width: 20px;
}
.socials {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.socials a:hover {
    background: #0283d9;
}
.socials a:hover svg {
    color: #FFF;
}
.value-card svg {
    color: #0283d9;
}


@media screen and (max-width:767px) {
 .commitment-card {
    padding: 25px;
}
}