/* Styling for the new sections */
.about-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.about-section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.mission-vision-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.mission-box, .vision-box {
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 400px;
}

.mission-box h3, .vision-box h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.mission-box p, .vision-box p {
    text-align: center;
    max-width: none;
    font-size: 0.95rem;
    color: #666;
}

.values-section h2, .values-section p {
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 250px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f75a6c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto;
}

.icon-circle-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f75a6c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 10px;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Footer ===== */
footer{
  background:#000;         
  color:#fff;
  width:100%;
  margin-top:40px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

footer .containe{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* --- top area --- */
.footer-top{
  display:grid;
  grid-template-columns: 320px 1fr;  
  gap:48px;
  padding:56px 0 28px;
  align-items:start;
}

/* brand/info */
.footer-info img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin:0 0 12px;
}
.footer-info p{
  margin:0 0 16px;
  color:#cbd5e1;                       
  max-width:28ch;
}
.footer-info div a{
  display:inline-block;
  margin-right:16px;
  font-size:18px;
  color:#e5e7eb;                        
  text-decoration:none;
  transition:color .2s ease;
}
.footer-info div a:hover{ color:#ffffff; }

/* link columns */
.footer-links{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:24px 48px;
}

.footer-column h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:800;
  color:#ffffff;
}

.footer-column ul{ margin:0; padding:0; list-style:none; }
.footer-column li{ margin:10px 0; }

.footer-column a{
  color:#f7f9fc;                       
  text-decoration:none;
  transition:color .2s ease;
}
.footer-column a:hover{ 
  color:#b91c1c;                          
  font-weight:700;
}

/* --- bottom bar --- */
.footer-bottom{
  border-top:1px solid #f3f3f8;           
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0 26px;
}
.footer-bottom p{
  margin:0;
  color:#f0f1f3;
  font-size:14px;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .footer-top{
    grid-template-columns:1fr;
    gap:28px;
  }
  .footer-links{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 560px){
  .footer-links{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}

