body {
  margin:0;
  font-family:'Segoe UI',sans-serif;
  background:#0b1220;
  color:white;
}

/* NAV */
header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}
header a {
  color:#cbd5f5;
  margin:0 12px;
  text-decoration:none;
}
header a:hover {color:white;}

/* HERO */
.hero {
  text-align:center;
  padding:90px 20px;
}
.hero h1 {
  font-size:44px;
}
.hero p {
  color:#94a3b8;
}
.hero input {
  width:60%;
  padding:16px;
  border-radius:12px;
  border:none;
  margin-top:20px;
}
.hero button {
  padding:14px 30px;
  background:linear-gradient(90deg,#22c55e,#16a34a);
  border:none;
  color:white;
  border-radius:12px;
  margin-top:12px;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}

.hero button:hover {
  transform:scale(1.05);
  box-shadow:0 10px 20px rgba(0,0,0,0.3);
}
/* SECTIONS */
.section {
  padding:70px 20px;
  text-align:center;
}

/* GRID (BIG MODERN CARDS) */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  padding:30px;
  max-width:1100px;
  margin:auto;
}

/* TOOL CARD */
.card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:18px;
  transition:0.3s;
  text-align:center;
}
.card:hover {
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}
.card svg {
  width:40px;
  height:40px;
  margin-bottom:10px;
}

/* PRICING */
.pricing {
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.price-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:35px;
  border-radius:18px;
  width:280px;
  text-align:center;
  transition:0.3s;
}
.price-card:hover {
  transform:scale(1.05);
  border-color:#22c55e;
}

.price {
  font-size:32px;
  margin:10px 0;
  color:#22c55e;
}

.btn {
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#3b82f6;
  color:white;
  border-radius:10px;
  text-decoration:none;
}

/* Footer Styles */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.brand-col {
    padding-right: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    display: inline-block;
}

.footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .brand-col {
        grid-column: span 3;
        text-align: center;
        padding-right: 0;
    }
    .footer-desc {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    .brand-col {
        grid-column: span 1;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
}
/* Related Resources Section */
.related-resources {
    padding: 60px 0;
    background: #0f0f0f;
    margin-top: 40px;
}
.related-resources h3 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
}
.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.resource-links a {
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 40px;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
}
.resource-links a:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .resource-links {
        flex-direction: column;
    }
    /* ======================================== */
/* MODERN LAW CARDS - SMALL & STYLISH */
/* ======================================== */

.laws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px auto;
    max-width: 1280px;
    padding: 0 20px;
}

.law-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.law-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px -10px rgba(59,130,246,0.3);
}

.law-flag {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}

.law-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}

.law-card p {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.4;
}

.deadline {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.deadline-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.deadline-urgent {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.deadline-upcoming {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* Responsive Law Cards */
@media (max-width: 1024px) {
    .laws-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .laws-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .laws-grid {
        grid-template-columns: 1fr;
    }
}
}