
.articles-section {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient(135deg, #e7e0f7, #e3f7f5); 
    color: #4a4a4a;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-family: 'Lucida Sans';
    font-weight: bold;
    color: #6e4797; 
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1.2rem;
    font-family: 'Montserrat';
    color: #4fbfb4; 
    margin-bottom: 30px;
  }
  
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .article-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .article-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .article-content {
    padding: 20px;
    text-align: left;
  }
  
  .article-content h3 {
    font-size: 1.5rem;
    font-family: 'Montserrat';
    font-weight: bold;
    color: #6e4797;
    margin-bottom: 10px;
  }
  
  .article-content p {
    font-size: 1rem;
    font-family: 'Montserrat';
    color: #4a4a4a;
    margin-bottom: 15px;
  }
  
  .btn-read-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
    background: #4fbfb4; 
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-read-more:hover {
    background: #3a9c92; 
    transform: scale(1.05);
  }
  
  
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }
  
    .section-header p {
      font-size: 1rem;
    }
  
    .article-content h3 {
      font-size: 1.2rem;
    }
  
    .btn-read-more {
      font-size: 0.8rem;
    }
  }

  /* Article Number 2 CSS */
.articles-section-alt {
    padding: 60px 20px;
    background: #f7f9fc; 
    color: #4a4a4a;
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: #6e4797; 
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1.2rem;
    color: #4fbfb4; 
  }
  
  .articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .article-card-alt {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .article-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .article-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .article-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .article-body h3 {
    font-size: 1.5rem;
    color: #6e4797; 
    margin-bottom: 15px;
  }
  
  .article-body p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
  }
  
  .btn-read-more-alt {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    background: #4fbfb4; 
    color: #ffffff;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-read-more-alt:hover {
    background: #3a9c92; 
    transform: scale(1.05);
  }
  

  @media (max-width: 768px) {
    .articles-container {
      flex-direction: column;
      align-items: center;
    }
  
    .article-card-alt {
      width: 90%;
    }
  }
  
  /* Article Three CSS */

.articles-section-grid {
    padding: 60px 20px;
    background: #f7f9fc; 
    color: #4a4a4a;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-family: 'Lucida Grande';
    color: #6e4797; 
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1.2rem;
    font-family: 'Montserrat';
    color: #4fbfb4; 
    margin-bottom: 40px;
  }
  
  .articles-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
  }
  
  .article-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .article-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .article-grid-item:hover img {
    transform: scale(1.1);
  }
  
  .article-grid-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }
  
  .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 191, 180, 0.8); 
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .article-grid-item:hover .article-overlay {
    opacity: 1;
  }
  
  .article-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .article-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .btn-read-more-grid {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    background: #ffffff; 
    color: #4fbfb4; 
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn-read-more-grid:hover {
    background: #4fbfb4;
    color: #ffffff; 
  }
  
  
  @media (max-width: 768px) {
    .articles-grid-container {
      grid-template-columns: 1fr;
    }
  }
  