/* Media & Resources Section Styles */

  .container{
    max-width: 1200px;
    margin: 0 auto;
    /* padding:var(--padding); */
}

  
  .media-resources-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: ;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  /* Blog Articles Styles */
  .blog-section {
    margin-bottom: 60px;
  }
  
  .blog-subtitle {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 30px;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .blog-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
  }
  
  .blog-title {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0 0 15px;
    line-height: 1.4;
  }
  
  .blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .read-more {
    display: inline-block;
    color: #2a7d4f;
    text-decoration: none;
    font-weight: 600;
    position: relative;
  }
  
  .read-more:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #2a7d4f;
    bottom: -2px;
    left: 0;
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .read-more:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  
  /* Gallery Styles */
  .gallery-section {
    margin-bottom: 60px;
  }
  
  .gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .tab {
    padding: 12px 24px;
    background-color: #e5f2ec;
    border: none;
    border-radius: 30px;
    margin: 0 10px;
    font-family: inherit;
    font-weight: 600;
    color: #2a7d4f;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tab.active {
    background-color: #2a7d4f;
    color: white;
  }
  
  .gallery-container {
    position: relative;
    min-height: 400px;
  }
  
  .gallery-content {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .gallery-content.active {
    display: grid;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .infographic-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
  }
  
  /* Downloads Styles */
  .downloads-section {
    margin-bottom: 60px;
  }
  
  .downloads-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .download-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .download-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .download-content {
    flex: 1;
  }
  
  .download-title {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--text-color);
  }
  
  .download-description {
    color: var(--text-light);
    margin: 0 0 15px;
    line-height: 1.5;
  }
  
  .download-btn {
    display: inline-block;
    background-color: #2a7d4f;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .download-btn:hover {
    background-color: #1e5d3a;
  }
  
  /* Education Styles */
  .education-section {
    margin-bottom: 40px;
  }
  
  .accordion {
    margin-bottom: 15px;
  }
  
  .accordion-header {
    background-color: #e5f2ec;
    padding: 15px 20px;
    border-radius: 6px;
    color: #2a7d4f;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #d5e9df;
  }
  
  .accordion-header:after {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-header.active:after {
    transform: rotate(45deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #f7f9f8;
    border-radius: 0 0 6px 6px;
  }
  
  .accordion-content-inner {
    padding: 20px;
  }
  
  .accordion-content p {
    margin: 0 0 15px;
    line-height: 1.6;
    color: #444;
  }
  
  .resource-link {
    color: #2a7d4f;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
  }
  
  .resource-link:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .blog-grid,
    .gallery-content,
    .downloads-list {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .blog-subtitle,
    .gallery-subtitle,
    .downloads-subtitle,
    .education-subtitle {
      font-size: 1.5rem;
    }
  
    .gallery-tabs {
      flex-direction: column;
      align-items: center;
    }
  
    .tab {
      margin: 5px 0;
      width: 100%;
      max-width: 200px;
    }
  
    .accordion-header {
      padding: 12px 15px;
    }
  }
  