/* Section */
.bio-section {
  background: #fff;
  padding: 80px 0;
}

/* Header */
.bio-header h1 {
  font-size: 60px;
  font-weight: 700;
  color: #e11d1d;
  margin-bottom: 10px;
}

.bio-header h3 {
  font-size: 38px;
  font-style: italic;
  color: #e11d1d;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font-01);
}

/* Image */
.bio-img img {
  width: 100%;
}

/* Content */
.bio-content p, .bio-bottom p {
  font-size: 18px;
  line-height: 1.5;
  color: #231f20;
  margin-bottom: 8px;
}

/* Top spacing */
.bio-top {
  margin-bottom: 30px;
}

/* Bottom full width */
.bio-bottom {
  margin-top: 10px;
}
/*2nd section css*/
.public-service-section {
    background-color: var(--color-1); /* Campaign Deep Blue */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Giant, faint background watermark for visual texture */
.service-watermark {
    position: absolute;
    top: -5%;
    right: -2%;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03); /* Barely visible white */
    z-index: 1;
    transform: rotate(10deg);
    line-height: 1;
    user-select: none;
}

.story-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.story-icon {
    color: #E41C24; /* Campaign Red */
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: subtleFloat 3s ease-in-out infinite;
}

/* Gentle floating animation for the red quote icon */
@keyframes subtleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.story-heading {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-02);
}

/* Red accent line under the heading */
.story-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #000; 
    margin: 20px auto 0;
    border-radius: 2px;
}

.story-paragraph {
    color: #e9ecef; /* Slightly off-white for softer reading */
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: var(--font-02);
}

.story-paragraph:last-child {
    margin-bottom: 0;
    font-weight: 600; /* Bold the final impactful statement */
    color: #ffffff;
    font-size: 1.25rem;
    font-family: var(--font-02);
}
/* Responsive */
@media (max-width: 991px) {
  .bio-header h1 {
    font-size: 36px;
  }

  .bio-header h3 {
    font-size: 22px;
  }

  .bio-img {
    margin-bottom: 30px;
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .public-service-section {
        padding: 70px 0;
    }
    
    .story-heading {
        font-size: 2rem;
    }
    
    .story-paragraph {
        font-size: 1.05rem;
        text-align: left; /* Better readability for long text on mobile */
    }
    
    .story-paragraph:last-child {
        font-size: 1.1rem;
    }
    
    .service-watermark {
        font-size: 5rem;
        right: -10%;
        top: 10%;
    }
}