/* ============================= */
/* Heading + Description         */
/* ============================= */
.gov-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1350px;
    justify-content: center;
}
.gov-head-left { width: 50%; }
.gov-head-right { width: 45%; }

.gov-head .gov-title {
  margin: 0;
  color: #000;
  font-family: Lato, sans-serif !important;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
}
.gov-head .gov-title .gov-gradient {
  background: linear-gradient(90deg, #214BE8 0%, #3751D3 62.02%, #F4821F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gov-desc,
.gov-desc p {
  color: #0D1844CC;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
.gov-desc p { margin: 0 0 10px; }
.gov-desc p:last-child { margin-bottom: 0; }

/* Layout */
.hs-acc .acc { display: grid; gap: 12px; }
/* Card */
.hs-acc .acc-item {
  overflow: hidden;       /* clips content when closed */
  height: 98px;
  padding: 26px;/* closed height */
  border-radius: 20px;
  background: #E5EEFF80;
  backdrop-filter: blur(8px);
  scroll-snap-align: start;
  position: relative;
}
.hs-acc .acc-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(305deg, #1011324f, #777cf700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
/* Open state: height grows to fit content */
.hs-acc .acc-item[aria-expanded="true"] { height: auto; }
/* Two-column grid; no absolute positioning */
.hs-acc .acc-row {
  display: grid;
  grid-template-columns: var(--artW, 36px) 1fr;
  gap: 12px;
  align-items: start;
}
/* Left image column */
.hs-acc .acc-art {
  display: flex;
  align-items: flex-start;
  justify-content: center;
/*   padding: 12px 0 0 12px; /* keep art nicely placed inside 65px header */ */
}
.hs-acc .mr-img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Right side */
.hs-acc .acc-body { display: block; padding: 0 56px 0 30px; }
/* Header */
.hs-acc .acc-hdr {
  width: 100%;
/*   min-height: 65px;       /* matches closed height */ */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 16px 12px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
}
.hs-acc .acc-title { 
    font-weight: 700;
    color: #000;
    font-family: Lato !important;
    font-size: 26px; 
}
.hs-acc .caret { transition: transform .2s ease; fill: #394150; }
/* Rotate caret when open */
.hs-acc .acc-item[aria-expanded="true"] .caret { transform: rotate(180deg); }
/* Panels hidden by default (display:none) */
.hs-acc .acc-panel { display: none; }
.hs-acc .acc-item[aria-expanded="true"] .acc-panel { display: block; }
.hs-acc .acc-inner { padding: 0 16px 16px 0; color: #000;
    font-family: Helvetica !important;
    font-size: 20px !important; }
.hs-acc .acc-inner p { margin: .25rem 0; }
/* Small screens */
@media (max-width: 520px){
  .hs-acc .acc-row { grid-template-columns: var(--artW, 32px) 1fr; gap: 10px; }
  .hs-acc .acc-hdr { padding-right: 12px; }
  .hs-acc .acc-inner { padding-right: 12px; }
}
.global-d{
display: flex;
    gap: 40px;
    max-width: 1350px;
}
.right-img-wrap {
    width: 45%;
    text-align: right;
}
section#acc- {
    width: 50%;
}
img.right-img {
    height: 660px;
}

/* ============================= */
/* Heading responsive            */
/* ============================= */
@media (max-width: 1200px) {
  .gov-head .gov-title { font-size: 34px; }
}
@media (max-width: 992px) {
  .gov-head {
    flex-direction: column;
    gap: 15px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .gov-head-left,
  .gov-head-right { width: 100%; }
  .gov-head .gov-title { font-size: 30px; }
}
@media (max-width: 520px) {
  .gov-head .gov-title { font-size: 26px; }
  .gov-desc,
  .gov-desc p { font-size: 15px; line-height: 24px; }
}