    /*BASE*/
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #f4f6f9;
      color: #1a1a2e;
      line-height: 1.5;
    }

    /* MAIN CONTAINER*/
    .csm-container {
      width: 100%;
      background: #ffffff;
    }

    /*reusable spacing*/
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header */
    .site-header {
      background: #1a3a5c;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .seal-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    }
    .brand-text {
      color: white;
      font-size: 14px;
      font-weight: 500;
    }
    .brand-text span {
      display: block;
      font-size: 11px;
      color: #b5d4f4;
      font-weight: 400;
    }
    .nav-links {
      display: flex;
      gap: 20px;
    }
    .nav-links a {
      color: #b5d4f4;
      font-size: 13px;
      text-decoration: none;
      position: relative;
    }
    .nav-links a:hover { color: white; }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: #60a5fa;
      border-radius: 2px;
    }


    /* hero section */
    .hero {
      background: linear-gradient(160deg, #1a3a5c 0%, #0f2340 100%);
      padding: 56px 24px 48px;
    }
    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }
    .hero-text { flex: 1; min-width: 240px; }
    .badge {
      display: inline-block;
      background: rgba(147, 197, 253, 0.2);
      color: #93c5fd;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.05em;
      border: 0.5px solid rgba(147,197,253, 0.5);
      margin-bottom: 16px;
    }
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: white;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .hero-text h1 em { color: #60a5fa; font-style: normal; }
    .hero-text p {
      font-size: 15px;
      color: #c9e0ff;
      margin-bottom: 28px;
      max-width: 460px;
    }
    .btn-primary {
      display: inline-block;
      background: #60a5fa;
      color: #1a3a5c;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 40px;
      text-decoration: none;
      transition: 0.2s;
      border: none;
      cursor: pointer;
      font-size: 14px;
    }
    .btn-primary:hover {
      background: #3b82f6;
      transform: translateY(-2px);
    }
    .note {
      font-size: 12px;
      color: #9bc1f0;
      margin-top: 12px;
    }
    .mayor-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(4px);
      border-radius: 24px;
      padding: 20px;
      text-align: center;
      min-width: 170px;
      border: 0.5px solid rgba(255,255,255,0.2);
    }
    .mayor-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    border: 3px solid #60a5fa; 
    }
    .mayor-name {
      font-weight: 600;
      color: white;
      font-size: 14px;
    }
    .mayor-title {
      font-size: 12px;
      color: #85B7EB;
    }
    .mayor-muni {
      font-size: 12px;
      color: #60a5fa;
      margin-top: 4px;
    }

    /* stats bar */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      background: #e2e8f0;
      border-top: 1px solid #e2e8f0;
    }
    .stat-item {
      background: white;
      text-align: center;
      padding: 20px 16px;
      transition: 0.2s;
    }
    .stat-number {
      font-size: 24px;
      font-weight: 700;
      color: #1a3a5c;
    }
    .stat-label {
      font-size: 11px;
      color: #475569;
      margin-top: 4px;
      letter-spacing: 0.3px;
    }

    /* steps */
    .steps {
      padding: 48px 24px;
      background: white;
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      color: #60a5fa;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 32px;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }
    .step-card {
      background: #F0F7FF;
      border: 1px solid #D6E4FF;
      border-radius: 20px;
      padding: 22px 18px;
      transition: 0.2s;
    }
    .step-card:hover {
      transform: translateY(-4px);
      border-color: #93C5FD;
      box-shadow: 0 12px 20px -12px rgba(0,0,0,0.1);
    }
    .step-number {
      width: 32px;
      height: 32px;
      background: #1a3a5c;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .step-title {
      font-weight: 600;
      font-size: 15px;
      color: #0f2a44;
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: 12px;
      color: #4b5563;
      line-height: 1.5;
    }

    /* info */
    .info-bar {
      background: #0f2340;
      padding: 18px 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      align-items: center;
      justify-content: space-between;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dot {
      width: 7px;
      height: 7px;
      background: #60a5fa;
      border-radius: 50%;
    }
    .info-text {
      font-size: 12px;
      color: #b9d6f5;
    }
    .info-text strong {
      color: white;
      font-weight: 500;
    }

    /* Office dropdown */
    .nav-offices {
    position: relative;
    cursor: pointer;
    }
    .nav-offices > span {
    color: #b5d4f4;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    }
    .nav-offices:hover > span,
    .nav-offices.open > span { color: white; }

    .offices-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: #1a3a5c;
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 16px;
    min-width: 340px;
    z-index: 100;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .nav-offices.open .offices-panel { display: block; }

    .offices-panel-label {
    font-size: 10px;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    }
    .offices-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    }
    .office-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    pointer-events: none;
    }
    .office-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #60a5fa;
    flex-shrink: 0;
    }
    .office-item span {
    font-size: 12px;
    color: #c9e0ff;
    }

  /* ADMINISTRATIVE AFFAIRS DROPDOWN */
    .nav-admin {
      position: relative;
      cursor: pointer;
    }
    .nav-admin > span {
      color: #b5d4f4;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }
    .nav-admin:hover > span,
    .nav-admin.open > span { color: white; }

    .admin-panel {
      display: none;
      position: absolute;
      top: calc(100% + 14px);
      right: 0;
      background: #1a3a5c;
      border: 0.5px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 8px;
      min-width: 260px;
      z-index: 100;
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .nav-admin.open .admin-panel { display: block; }

    .admin-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .admin-option:hover { background: rgba(255,255,255,0.08); }

    .admin-option-icon {
      width: 32px;
      height: 32px;
      background: rgba(96,165,250,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .admin-option-title {
      font-size: 13px;
      font-weight: 500;
      color: white;
    }
        
