.download-guides {
    background-color: rgba(255, 111, 54,0);
    padding: 80px 3px;
  }
  
  .download-guides .section-title h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
  }
  
  .guide-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    background:#fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px;
  }
  .guide-content{
    background-color:pink;
    padding: 20px;
    border-radius: 10px;
  }
  
  .guide-icon img {
    width: 80px;
    height: 80px;
  }
  
  .guide-content h4 {
    font-size: 1.6rem;
    color: var(--purple);
    margin-bottom: 10px;
  }
  
  .subtitle {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .description {
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
  }
  
  .features {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: #333;
  }
  
  .features li {
    margin-bottom: 8px;
  }
  
  .testimonial {
    background: var(--cream);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    font-style: italic;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  
  .testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    margin-top: 5px;
  }
  
  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background: var(--secondary);
  }
  
  .blog-section {
    background-color: rgba(255, 111, 54,0);
    padding: 80px 20px;
    text-align: center;
  }
  
  .blog-section .section-title h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .blog-section .intro-text {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }
  
  .blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }
  
  .blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 6px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h4 {
    color: var(--purple);
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .blog-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .blog-cta .cta-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .blog-cta .cta-btn:hover {
    background: var(--secondary);
  }
  .support-section {
    background-color: rgba(255, 111, 54,0);
    padding: 80px 20px;
    text-align: center;
  }
  
  .support-section .section-title h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .support-section .intro-text {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .support-grid {
    width: 100%;
   display: flex;
 flex-wrap: wrap;
 justify-content: center;
  gap: 24px;
  margin:30px auto;
  }
  
  .support-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 10px;
    background: var(--cream);
    border-radius: 20px;
    /* padding: 10px; */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: auto;

  }
  
  .support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  }
  
  .support-card .icon img {
    width: 100%;
    height: 150px;
    border-radius: 20px;
  }
  
  .support-card h4 {
    color: var(--purple);
    font-size: 1.1rem;
  }
  
  .support-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .support-card a{
    padding: 10px;
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    margin-bottom: 0px;
  }
  .support-cta .cta-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .support-cta .cta-btn:hover {
    background: var(--secondary);
  }
  