#about-page {
    /* Header Section */
    .about-template .text-section {
        color: #333;
        margin-bottom: 2rem;
    }
  
    .about-template h1 {
        font-weight: 700;
        color: #333;
    }
  
    .about-template p {
        font-size: 1.2rem;
        color: #555;
    }
  
    /* Section Boxes */
    .section-box {
        background-color: #f8f9fa !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
        padding: 1.5rem !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        height: 100% !important;  /* Added !important */
        display: flex !important;  /* Added !important */
        flex-direction: column !important;  /* Added !important */
        min-height: 300px !important;  /* Added fixed minimum height */
    }
  
    .section-box:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2) !important;
    }
  
    /* Mission and Why Choose Us */
    .mission-section h3,
    .why-choose-us-section h3 {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        color: #5a6268 !important;
        margin-bottom: 1.5rem !important;
    }
  
    .mission-section p,
    .why-choose-us-section ul {
        color: #555 !important;
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 0 !important;
        height: 100% !important;  /* Added !important */
    }
  
    .why-choose-us-section ul {
        padding-left: 0 !important;
        list-style: none !important;
    }
    
    .why-choose-us-section ul li {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .why-choose-us-section ul li:last-child {
        margin-bottom: 0 !important;
    }
  
    /* Contact Section */
    .contact-section {
        color: #333;
    }

    h3.display-4 {
        font-weight: 700;
        color: #333;
    }
  
    .contact-section p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
  
    .contact-section .btn-primary {
        background-color: #5a6268;
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }
  
    .contact-section .btn-primary:hover {
        background-color: #5a6268;
        transform: translateY(-3px);
    }
}