{# --- Import Figtree Font --- #}
{% require_css %}
<style>

  /* --- Section Layout --- */
  .volt-section {
    padding: 80px 0px;
    background-color: #F8FDFF; 
    font-family: 'Figtree', sans-serif; /* Applied Globally */
  }

  .volt-container {
    max-width: 1280px; /* Slightly tighter width to match design */
    margin: 0 auto;
  }

  /* --- Main Heading Styling --- */
  .volt-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .volt-header h2 {
    font-family: Figtree;
    font-size: 32px; /* Large Section Header */
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    letter-spacing: -0.5px;
  }

  /* --- Grid Layout --- */
  .volt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Matches the spacing in image */
  }

  /* --- Card Styling --- */
  .volt-card {
    background-color: #ffffff;
    border: none;
    /* Soft shadow from design */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); 
    border-radius: 12px; /* Matches the corner radius in image */
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%; /* Ensures equal height */
  }

  /* --- Icon Styling --- */
  .volt-icon-wrapper {
    margin-bottom: 20px;
  }

  .volt-icon-wrapper img {
    width: 42px; /* Sizing from image */
    height: auto;
    display: block;
  }

  /* --- Card Heading Styling --- */
  .volt-title {
    font-family: Figtree;
    font-size: 25px; /* Adjusted to match design */
    font-weight: 600; /* Bold */
    color: #000000;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing:0.5px;
  }

  /* --- Card Paragraph Styling --- */
  .volt-content p{
    font-family: Figtree;
    font-size: 16px; /* Smaller text size as requested */
    line-height: 1.5;
    color: #1C1C1C; /* Dark grey/black for sharp contrast */
    font-weight: 400;
  }

  .volt-content p {
    margin: 0;
  }

  /* --- Mobile Responsiveness --- */
  @media (max-width: 900px) {
    .volt-grid {
      grid-template-columns: 1fr;
    }
    
    .volt-header h2 {
      font-size: 28px;
    }
  }
</style>
{% end_require_css %}