  .sic-section {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .sic-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .sic-heading {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #1a73e8, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 20px;
  }

  .sic-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #1a73e8;
    margin: 10px auto 0 auto;
    border-radius: 2px;
  }

  .sic-section p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
  }

  .sic-subheading {
    margin-top: 40px;
    text-align: center;
    font-size: 28px;
    color: #333;
  }

  .sic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .sic-gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sic-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }