
/* About Page Modern Styles */
.about-hero {
    background: linear-gradient(135deg, #0C4B33 0%, #389770 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  .about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-section {
    margin-bottom: 60px;
  }
  
  .about-section h2 {
    color: #0C4B33;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0C4B33;
    border-radius: 2px;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
  }
  
  .about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .about-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }
  
  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }
  
  .about-card h3 {
    color: #0C4B33;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .about-card-icon {
    width: 48px;
    height: 48px;
    background: #0C4B33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }
  
  .about-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
  }
  
  .steps-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .step-number {
    background: #0C4B33;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  .step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
  }
  
  .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #0C4B33 0%, #389770 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
  }
  
  .cta-section h2 {
    color: white;
    margin-bottom: 20px;
  }
  
  .cta-section h2::after {
    background: white;
  }
  
  .cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #0C4B33;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #f8f9fa;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0C4B33;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    background: #0C4B33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }
  
  .feature-text {
    flex: 1;
  }
  
  .feature-text h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
  }
  
  .feature-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Featured News Section */
  .featured-news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    margin-top: 30px;
  }
  
  .featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .featured-news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
  }
  
  .featured-news-image {
    overflow: hidden;
  }
  
  .news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-news-card:hover .news-thumbnail {
    transform: scale(1.05);
  }
  
  .featured-news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .featured-news-title {
    margin-bottom: 15px;
  }
  
  .featured-news-title a {
    color: #0C4B33;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .featured-news-title a:hover {
    color: #389770;
  }
  
  .featured-news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .featured-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .news-date {
    color: #0C4B33;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .read-more-link {
    color: #0C4B33;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .read-more-link:hover {
    color: #389770;
    text-decoration: underline;
  }
  
  /* Responsive adjustments for about page */
  @media (max-width: 768px) {
    .about-hero {
      padding: 60px 20px;
    }
    
    .about-hero h1 {
      font-size: 2.5rem;
    }
    
    .about-hero p {
      font-size: 1.1rem;
    }
    
    .about-content {
      padding: 0 15px;
    }
    
    .about-cards {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .steps-container {
      padding: 30px 20px;
    }
    
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .cta-section {
      padding: 40px 20px;
      margin: 40px 0;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .featured-news-card {
      grid-template-columns: 1fr;
    }
    
    .featured-news-image {
      height: 200px;
    }
    
    .featured-news-content {
      padding: 20px;
    }
    
    .featured-news-title a {
      font-size: 1.3rem;
    }
  }
  