 :root {
   --brand-red: #dc3545;
   --brand-dark: #0f172a;
   --brand-bg: #fcfdfe;
 }

 body {
   font-family: 'Outfit', system-ui, -apple-system, sans-serif;
   background-color: var(--brand-bg);
   color: #334155;
 }

 /* --- Hero Section --- */
 .hero-country {
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url('assets/hero-bg.jpg');
   background-size: cover;
   padding: 100px 0 80px 0;
   position: relative;
 }

 /* --- Feature Cards --- */
 .feature-card {
   background: #ffffff;
   border: 1px solid rgba(0, 0, 0, 0.05);
   border-radius: 16px;
   padding: 24px;
   height: 100%;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
 }

 .feature-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
   border-color: rgba(220, 53, 69, 0.3);
 }

 .icon-box {
   width: 50px;
   height: 50px;
   border-radius: 12px;
   background: rgba(220, 53, 69, 0.08);
   color: var(--brand-red);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   margin-bottom: 1.2rem;
   transition: all 0.3s ease;
 }

 .feature-card:hover .icon-box {
   background: var(--brand-red);
   color: white;
   transform: rotate(-5deg);
 }

 /* --- Related Tools Box --- */
 .related-box {
   background: #f8fafc;
   border-radius: 16px;
   padding: 2rem;
   border-left: 4px solid var(--brand-red);
 }

 /* --- Section Header --- */
 .section-header {
   text-align: center;
   margin-bottom: 3rem;
 }

 .section-pill {
   display: inline-block;
   font-size: 0.85rem;
   letter-spacing: 1px;
   color: var(--brand-red);
   text-transform: uppercase;
   background: rgba(220, 53, 69, 0.06);
   padding: 6px 18px;
   border-radius: 60px;
   font-weight: 700;
   margin-bottom: 1rem;
 }
