{% require_css %}
<style>

  /* Section Layout */
  .services-section {
    padding: 100px 20px;
    background-color: #F8FDFF; /* Light blue background */
    font-family: 'Figtree', sans-serif;
  }

  .services-container {
    max-width: 1280px; /* Controlled width for the 2-col layout */
    margin: 0 auto;
  }

  /* Header Styling */
  .services-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
  }

  .services-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
  }

  .services-description {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
  }

  /* Grid Layout (2 Columns) */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    gap: 24px;
  }

  /* Card Styling */
  .service-card {
    background-color: #fff;
    border: 1px solid #E5E7EB; /* Subtle grey border */
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if heights vary */
    min-height: 230px; /* Ensures consistent card height look */
    transition: box-shadow 0.3s ease;
  }

  .service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .card-content-top h3 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    margin-top: 0;
    letter-spacing:0.5px;
  }

  .service-text{
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 10px;
  }
  
  .service-text p {
    margin: 0;
  }

  /* Button Link Styling */
  .text-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: gap 0.2s ease;
  }

  .text-link-btn:hover {
    gap: 12px; /* Slight movement on hover */
    color: #000;
  }

  .chevron svg {
    display: block;
    height: 12px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr; /* 1 column on mobile */
    }

    .services-section {
      padding: 60px 20px;
    }

    .services-header h2 {
      font-size: 32px;
    }
    
    .service-card {
      min-height: auto;
      padding: 30px;
    }
  }
</style>
{% end_require_css %}