*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f8fafc;
  color:#1e293b;
  line-height:1.7;
}

.regulatory-section{
  width:100%;
  padding:60px 20px;
}

.regulatory-container{
  max-width:1100px;
  margin:auto;
}

.regulatory-title{
  font-size:40px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:40px;
  text-align:center;
}

.regulatory-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.regulatory-card{
  background:#ffffff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 4px 18px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.regulatory-card:hover{
  transform:translateY(-5px);
}

.regulatory-card h3{
  font-size:28px;
  color:#14532d;
  margin-bottom:20px;
}

.regulatory-card p{
  font-size:17px;
  margin-bottom:18px;
}

.regulatory-card ul{
  padding-left:20px;
  margin-bottom:20px;
}

.regulatory-card ul li{
  margin-bottom:10px;
  font-size:16px;
}

.regulatory-card a{
  display:inline-block;
  margin-top:10px;
  text-decoration:none;
  color:#2563eb;
  font-weight:600;
  word-break:break-word;
}

.regulatory-card a:hover{
  text-decoration:underline;
}

/* Tablet Responsive */
@media(max-width:992px){

  .regulatory-title{
    font-size:34px;
  }

  .regulatory-grid{
    grid-template-columns:1fr;
  }

  .regulatory-card{
    padding:30px;
  }

  .regulatory-card h3{
    font-size:24px;
  }
}

/* Mobile Responsive */
@media(max-width:600px){

  .regulatory-section{
    padding:45px 15px;
  }

  .regulatory-title{
    font-size:28px;
    margin-bottom:30px;
  }

  .regulatory-card{
    padding:22px;
    border-radius:14px;
  }

  .regulatory-card h3{
    font-size:21px;
    line-height:1.4;
  }

  .regulatory-card p,
  .regulatory-card ul li,
  .regulatory-card a{
    font-size:15px;
  }
}