
:root {
    --pasa-blue:#2E8BC0;
    --pasa-hover:#333;
    --pasa-grey:#444;
    --pasa-orange:#f59e0b;
    --pasa-border:#e5e7eb;
    
  }
  
/* SECTION */
.phw-about-header {
  padding: 95px 0 64px;
  background: linear-gradient(
    to bottom,
    rgba(179, 248, 248, 0.164),
    #ffffff
  );
}

/* CONTAINER */
.phw-about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* CONTENT */
.phw-about-content {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

/* BADGE */
.phw-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pasa-grey);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.phw-about-badge:hover{
    background: var(--pasa-hover);
}

/* SVG ICON  */
.phw-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* TITLE */
.phw-about-title {
  font-size: 45px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .phw-about-title {
    font-size: 34px;
  }
}

/* TEXT */
.phw-about-text {
  font-size: 20px;
  color: black;
  line-height: 1.6;
}

.phw-story {
  padding: 80px 0;
}

.phw-story-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.phw-story-grid {
  display: grid;
  gap: 60px;
}

.phw-story-top {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 80px;
}

.phw-section-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.phw-paragraphs p {
  margin-bottom: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.phw-story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.phw-story-images img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.phw-img-offset {
  margin-top: 30px;
}

.phw-img-wide {
  grid-column: span 2;
}

/* FEATURES */
.phw-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.phw-feature-card {
  text-align: center;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: border-color .3s;
}

.phw-feature-card:hover {
  border-color: var(--pasa-blue);
}

.phw-feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(184, 210, 231);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.phw-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--pasa-blue);
  fill: none;
  stroke-width: 2;
}

/* MISSION / VISION */
.phw-mv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.phw-mv-card {
  padding: 32px;
  border-radius: 16px;
}

.phw-mv-card.primary {
  background: rgba(14,165,233,0.1);
  border: 2px solid rgba(14,165,233,0.1);
}

.phw-mv-card.secondary {
  background: rgb(221, 220, 220);
  border: 1px solid slategray ;
}

.phw-mv-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  
  
}
.phw-mv-icon{
    background: var(--pasa-blue);
    padding: 6px;
    border-radius: 50%;
}
.phw-mv-card.secondary .phw-mv-icon{
    background: var(--pasa-grey);
} 

/* CTA */
.phw-cta {
  text-align: center;
  padding: 48px;
  background: rgb(222, 228, 236);
  border-radius: 24px;
}
.phw-cta h3{
  font-size: 30px;
}
.phw-cta p{
  font-size: 20px;
}
.phw-cta svg{
  width: 48px;
  height: 48px;
  stroke: var(--pasa-blue);
  fill: none;
  margin-bottom: 16px;
}




.phw-btn-primary,
.phw-btn-outline {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 12px;
  
}

.phw-btn-primary {
  background: var(--pasa-blue);
  color: #fff;
  
}
.phw-btn-primary:hover{
    background-color: #3581ad;
}

.phw-btn-outline {
  border: 1px solid #d3d6db;
  color: #000;
  background-color: rgba(73, 73, 73, 0.04) ;
  
}
.phw-btn-outline:hover{
 
 background: slategray;
}

@media (max-width: 768px) {
  .phw-btn-primary,
  .phw-btn-outline {
    width: 100%;
    display: block;   
    text-align: center;
    margin-bottom: 12px;
  }
}


.phw-mv-header{
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}
.phw-mv-header h3{
    font-size: 25px;
}
.phw-cta-actions{
    margin-top: 30px;
    

}

/* RESPONSIVE */
@media (max-width: 900px) {
  .phw-story-top {
    grid-template-columns: 1fr;
  }
}


