.mn-tax-sections-wrapper{
  width:100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#1f2937;
  line-height:1.5;
  overflow:hidden;
}

/* Container */
.mn-tax-sections-wrapper .container{
  max-width:1200px;
  margin:0 auto;
  padding:40px 18px;
}

/* Section base */
.mn-tax-sections-wrapper .sec{
  width:100%;
}

.mn-tax-sections-wrapper .sec-1,
.mn-tax-sections-wrapper .sec-3{
  background:#ffffff;
}

.mn-tax-sections-wrapper .sec-2,
.mn-tax-sections-wrapper .sec-4{
  background:#f7f8fb;
}

.mn-tax-sections-wrapper h2{
  text-align:center;
  font-size:28px;
  margin-bottom:10px;
  letter-spacing:-0.3px;
}

.mn-tax-sections-wrapper p.intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 28px auto;
  color:#4b5563;
  font-size:15px;
}

/* GRID */
.mn-tax-sections-wrapper .grid{
  display:grid;
  gap:18px;
}

/* Cards */
.mn-tax-sections-wrapper .card{
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
  min-height:120px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.mn-tax-sections-wrapper .card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(0,0,0,0.08);
  border-color:rgba(59,130,246,0.25);
}

/* Accent glow */
.mn-tax-sections-wrapper .card::before{
  content:"";
  position:absolute;
  top:-40px;
  right:-40px;
  width:90px;
  height:90px;
  background:radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  border-radius:50%;
}

/* Titles */
.mn-tax-sections-wrapper .card h3{
  font-size:16px;
  margin:0 0 8px 0;
  color:#111827;
  display:flex;
  align-items:center;
  gap:8px;
}

/* Paragraph */
.mn-tax-sections-wrapper .card p{
  margin:0;
  font-size:14px;
  color:#4b5563;
}

/* Badge */
.mn-tax-sections-wrapper .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:8px;
  font-size:12px;
  font-weight:600;
  color:#ffffff;
  background:linear-gradient(135deg,#3b82f6,#22c55e);
}

/* SECTION 2 TIMELINE */
.mn-tax-sections-wrapper .timeline{
  display:grid;
  gap:16px;
}

.mn-tax-sections-wrapper .step-card{
  background:#ffffff;
  border-left:5px solid #3b82f6;
  border-radius:12px;
  padding:20px;
  box-shadow:0 10px 22px rgba(0,0,0,0.05);
  transition:.25s ease;
}

.mn-tax-sections-wrapper .step-card:hover{
  transform:translateX(4px);
}

.mn-tax-sections-wrapper .step-num{
  font-size:12px;
  color:#3b82f6;
  font-weight:700;
  margin-bottom:6px;
}

.mn-tax-sections-wrapper .step-card h3{
  margin:0 0 6px 0;
  font-size:16px;
}

.mn-tax-sections-wrapper .step-card p{
  margin:0;
  font-size:14px;
  color:#4b5563;
}

/* Responsive defaults */
.mn-tax-sections-wrapper .sec-1 .grid,
.mn-tax-sections-wrapper .sec-3 .grid,
.mn-tax-sections-wrapper .sec-4 .grid{
  grid-template-columns:1fr;
}

/* Anim */
.mn-tax-sections-wrapper .reveal{
  opacity:0;
  transform:translateY(14px);
  transition:all .6s ease;
}

.mn-tax-sections-wrapper .reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* BREAKPOINTS */

/* 320 - 374 */
@media (min-width:320px) and (max-width:374px){
  .mn-tax-sections-wrapper .container{padding:28px 14px;}
  .mn-tax-sections-wrapper h2{font-size:20px;}
  .mn-tax-sections-wrapper p.intro{font-size:13px;}
  .mn-tax-sections-wrapper .card{padding:14px;}
  .mn-tax-sections-wrapper .card h3{font-size:14px;}
  .mn-tax-sections-wrapper .card p{font-size:12px;}
}

/* 375 - 429 */
@media (min-width:375px) and (max-width:429px){
  .mn-tax-sections-wrapper .container{padding:30px 16px;}
  .mn-tax-sections-wrapper h2{font-size:22px;}
  .mn-tax-sections-wrapper p.intro{font-size:13px;}
  .mn-tax-sections-wrapper .card{padding:15px;}
  .mn-tax-sections-wrapper .card h3{font-size:15px;}
}

/* 430 - 767 */
@media (min-width:430px) and (max-width:767px){
  .mn-tax-sections-wrapper .container{padding:34px 18px;}
  .mn-tax-sections-wrapper h2{font-size:24px;}
  .mn-tax-sections-wrapper .card{padding:16px;}
}

/* 768 - 1023 */
@media (min-width:768px) and (max-width:1023px){
  .mn-tax-sections-wrapper .sec-1 .grid,
  .mn-tax-sections-wrapper .sec-3 .grid,
  .mn-tax-sections-wrapper .sec-4 .grid{
    grid-template-columns:repeat(2,1fr);
  }

  .mn-tax-sections-wrapper h2{font-size:26px;}
}

/* 1024+ */
@media (min-width:1024px){
  .mn-tax-sections-wrapper .container{padding:50px 20px;}

  .mn-tax-sections-wrapper h2{font-size:30px;}
  .mn-tax-sections-wrapper p.intro{font-size:16px;}

  .mn-tax-sections-wrapper .sec-1 .grid,
  .mn-tax-sections-wrapper .sec-3 .grid,
  .mn-tax-sections-wrapper .sec-4 .grid{
    grid-template-columns:repeat(3,1fr);
  }

  .mn-tax-sections-wrapper .timeline{
    max-width:900px;
    margin:0 auto;
  }
}