:root{
  --brand-red:#DD3333;
  --text:#111;
  --muted:#6b7280;
  --border:#e9e9e9;
  --card:#ffffff;
  --bg-soft:#f6f7f8;
}

.license-hero{
  background: #fff;
}

.license-title{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.license-badge{
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.license-desc{
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 520px;
}

.license-hero .btn.btn-brand{
  background: var(--brand-red);
  border-color: var(--brand-red);
  color:#fff;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(221,51,51,.18);
}

.license-hero .btn.btn-brand:hover{
  background:#c62b2b;
  border-color:#c62b2b;
}

.license-hero-image{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 18px 36px rgba(16,24,40,.08);
  background:#fff;
}

.license-hero-image img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

@media (min-width: 992px){
  .license-hero-image img{ height: 300px; }
}

/* FACTS BAR */
.license-facts{
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.license-fact{
  padding: 14px 16px;
  position: relative;
}

.license-fact:not(:last-child){
  border-right: 1px solid #f0f0f0;
}

.license-fact-label{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 4px;
  line-height: 1.2;
}

.license-fact-value{
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}

@media (max-width: 991.98px){
  .license-facts{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .license-fact:nth-child(2n){
    border-right: 0;
  }
  .license-fact{
    border-bottom: 1px solid #f0f0f0;
  }
  .license-fact:nth-last-child(-n+2){
    border-bottom: 0;
  }
}

/* OVERVIEW BIG CARD */
.license-overview-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(16,24,40,.08);
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
}

.license-overview-image{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #efefef;
  background:#fff;
}

.license-overview-image img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display:block;
}

@media (min-width: 992px){
  .license-overview-image img{
    height: 140px;
  }
}

.license-overview-title{
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color:#111;
}

.license-overview-sub{
  margin: 6px 0 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 520px;
}

.license-overview-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.license-overview-list li{
  position: relative;
  padding-left: 18px;
}

.license-overview-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--brand-red);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: .95;
}

.ov-label{
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}

.ov-value{
  margin-top: 2px;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

/* bottom-right decoration like Figma */
.license-decor{
  position:absolute;
  right:-10px;
  bottom:-10px;
  width: 320px;
  height: 210px;
  pointer-events:none;
  opacity: .9;
  background-repeat:no-repeat;
  background-position:right bottom;
  background-size: 320px 210px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='240' viewBox='0 0 360 240'%3E%3Cg fill='none' stroke='%23DD3333' stroke-width='1'%3E%3Cpath d='M280 120 l18-10 18 10 0 20 -18 10 -18-10z' opacity='.35'/%3E%3Cpath d='M310 70 l14-8 14 8 0 16 -14 8 -14-8z' opacity='.25'/%3E%3Cpath d='M245 165 l12-7 12 7 0 14 -12 7 -12-7z' opacity='.20'/%3E%3Cpath d='M330 155 l10-6 10 6 0 12 -10 6 -10-6z' opacity='.18'/%3E%3C/g%3E%3Cg fill='none' stroke='%23cfcfcf' stroke-width='1'%3E%3Cpath d='M210 230 L360 150' opacity='.35'/%3E%3Cpath d='M230 240 L360 170' opacity='.28'/%3E%3Cpath d='M250 240 L360 190' opacity='.22'/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 575.98px){
  .license-hero-image img{ height: 220px; }
  .license-title{ font-size: 28px; }
  .license-overview-title{ font-size: 20px; }
  .license-decor{ width: 260px; height: 170px; background-size:260px 170px; }
}

        .training-locations-section{padding:26px 0;}
        .training-locations-wrap{display:flex;align-items:center;justify-content:space-between;gap:24px;}
        .training-locations-left h3{margin:0 0 10px;font-weight:800;font-size:22px;line-height:1.2;color:#111;}
        .training-locations-cta{
            display:inline-flex;align-items:center;gap:10px;
            padding:10px 16px;border-radius:999px;
            border:1.5px solid #d83131;color:#d83131;background:transparent;
            text-decoration:none;font-weight:700;font-size:13px;
            transition:.2s ease;
        }
        .training-locations-cta:hover{background:#d83131;color:#fff;transform:translateY(-1px);}

        .training-locations-chips{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end;}
        .tl-chip{
            display:flex;align-items:center;gap:14px;
            min-width:210px;height:80px;padding:0 18px;
            border-radius:18px;background:#1f1f22;
            border:2px solid #e6e6e6;
            box-shadow:0 10px 22px rgba(0,0,0,.12);
            text-decoration:none;
            transition:.2s ease;
        }
        .tl-chip:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(0,0,0,.16);}
        .tl-icon{
            width:34px;height:34px;border-radius:10px;
            display:grid;place-items:center;
            border:1.5px solid #d83131;color:#d83131;
            flex:0 0 34px;
        }
        .tl-title{color:#fff;font-weight:800;font-size:14px;letter-spacing:.2px;flex:1 1 auto;}
        .tl-arrow{color:#d83131;font-size:16px;display:flex;align-items:center;}

        @media (max-width: 991px){
            .training-locations-wrap{flex-direction:column;align-items:flex-start;}
            .training-locations-chips{justify-content:flex-start;}
            .tl-chip{min-width:0;width:100%;}
        }
